| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- namespace Database.Database;
- public partial class Country
- {
- public int? Id { get; set; }
- public string? CountryCode { get; set; }
- public string? CountryName1 { get; set; }
- public string? CountryName2 { get; set; }
- public bool? Status { get; set; }
- public string? ImgUrl { get; set; }
- public bool? IsPopular { get; set; }
- }
|