25 lines
500 B
C#
25 lines
500 B
C#
using Mqtt.App.Domain.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mqtt.App.Domain.Entities.Booking
|
|
{
|
|
public class BookingEntity
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Code { get; set; }
|
|
public BookingType Type { get; set; }
|
|
|
|
public int CustomerId { get; set; }
|
|
public int UserId { get; set; }
|
|
|
|
//booking-admin-01
|
|
//87698.ñaña
|
|
|
|
}
|
|
}
|