| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- namespace Database.Database;
- public partial class Area
- {
- public int? Id { get; set; }
- public string? AreaCode { get; set; }
- public string? AreaName1 { get; set; }
- public string? AreaName2 { get; set; }
- public bool? Status { get; set; }
- public string? ImgUrl { get; set; }
- public bool? IsPopular { get; set; }
- }
|