using System; using System.Collections.Generic; namespace CH.Dal.DbEntity; public partial class Location { public long Id { get; set; } public string Name { get; set; } = null!; public DateTime CreatedAt { get; set; } public DateTime? UpdatedAt { get; set; } public virtual ICollection Machines { get; set; } = new List(); }