using Empresa.App.Domain.Enums; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Empresa.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 } }