API
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ResortDto.cs 500B

12345678910111213141516171819202122
  1. namespace UnivateProperties_API.Containers.Timeshare
  2. {
  3. public class ResortDto : IDisplay
  4. {
  5. public ResortDto()
  6. {
  7. }
  8. public ResortDto(string resortCode, string resortName)
  9. {
  10. ResortCode = resortCode;
  11. ResortName = resortName;
  12. }
  13. public string ResortCode { get; set; }
  14. public string ResortName { get; set; }
  15. public int Available { get; set; }
  16. public string Display => ResortName;
  17. }
  18. }