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

RegionDto.cs 465B

123456789101112131415161718192021
  1. namespace UnivateProperties_API.Containers.Timeshare
  2. {
  3. public class RegionDto
  4. {
  5. public RegionDto()
  6. {
  7. }
  8. public RegionDto(int id, string regionName, string regionCode)
  9. {
  10. Id = id;
  11. RegionName = regionName;
  12. RegionCode = regionCode;
  13. }
  14. public int Id { get; set; }
  15. public string RegionName { get; set; }
  16. public string RegionCode { get; set; }
  17. }
  18. }