using System; using System.Collections.Generic; namespace demo4_true.Models; public partial class Direction { public int Id { get; set; } public string Name { get; set; } = null!; public virtual ICollection Events { get; set; } = new List(); }