123456789101112131415161718192021 |
- namespace UnivateProperties_API.Containers.Timeshare
- {
- public class RegionDto
- {
- public RegionDto()
- {
-
- }
-
- public RegionDto(int id, string regionName, string regionCode)
- {
- Id = id;
- RegionName = regionName;
- RegionCode = regionCode;
- }
-
- public int Id { get; set; }
- public string RegionName { get; set; }
- public string RegionCode { get; set; }
- }
- }
|