namespace UnivateProperties_API.Containers.Timeshare
{
    public class StatusDto
    {
        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 override string ToString()
        {
            return $"{Code} - {Description}";
        }
    }
}