using System; using System.Collections.Generic; namespace exam.Models; public partial class Country { public int Id { get; set; } public string? Country1 { get; set; } = null!; public virtual ICollection Users { get; set; } = new List(); }