API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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