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. }