Country.cs 410 B

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