// This file has been auto generated by EF Core Power Tools. #nullable enable using System; using System.Collections.Generic; namespace EF_Demo.Models; public partial class Event { public int Id { get; set; } public string Name { get; set; } = null!; public DateOnly EventDate { get; set; } public virtual ICollection Registrations { get; set; } = new List(); }