12345678910111213141516171819202122232425 |
- 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}";
- }
- }
- }
|