| 1234567891011121314151617181920212223 | namespace UnivateProperties_API.Containers.Timeshare
{
    public class StatusDto : IDisplay
    {
        public StatusDto()
        {
        }
        public StatusDto(int id, string code, string description)
        {
            Id = id;
            Code = code;
            Description = description;
        }
        public int Id { get; set; }
        public string Code { get; set; }
        public string Description { get; set; }
        public string Display => $"{Code} - {Description}";
    }
}
 |