Area.cs 398 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Database.Database;
  4. public partial class Area
  5. {
  6. public int? Id { get; set; }
  7. public string? AreaCode { get; set; }
  8. public string? AreaName1 { get; set; }
  9. public string? AreaName2 { get; set; }
  10. public bool? Status { get; set; }
  11. public string? ImgUrl { get; set; }
  12. public bool? IsPopular { get; set; }
  13. }