API
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

StatusDto.cs 517B

1234567891011121314151617181920212223
  1. namespace UnivateProperties_API.Containers.Timeshare
  2. {
  3. public class StatusDto : IDisplay
  4. {
  5. public StatusDto()
  6. {
  7. }
  8. public StatusDto(int id, string code, string description)
  9. {
  10. Id = id;
  11. Code = code;
  12. Description = description;
  13. }
  14. public int Id { get; set; }
  15. public string Code { get; set; }
  16. public string Description { get; set; }
  17. public string Display => $"{Code} - {Description}";
  18. }
  19. }