using System; using System.Collections.Generic; namespace Demo_Validation.Models; public partial class City { public int CityId { get; set; } public string CityName { get; set; } = null!; public virtual ICollection Events { get; set; } = new List(); }