namespace Marco.Pms.Model.Master { public class CountryMaster { public Guid Id { get; set; } public string Name { get; set; } = default!; public string CountryCode { get; set; } = default!; public string CurrencyCode { get; set; } = default!; public string PhoneCode { get; set; } = default!; } }