constellation-api/CH.Dal/DbEntity/Location.cs

14 lines
281 B
C#

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 virtual ICollection<Machine> Machines { get; set; } = new List<Machine>();
}