using System; using System.Collections.Generic; namespace Demo_Validation.Models; public partial class Country { public int CountryId { get; set; } public string CountryName { get; set; } = null!; public string? Code { get; set; } public int? Code2 { get; set; } public string CountryNameEn { get; set; } = null!; public virtual ICollection Users { get; set; } = new List(); }