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

18 lines
372 B
C#
Raw Normal View History

2025-01-02 17:53:38 -05:00
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; }
2025-01-02 17:53:38 -05:00
public virtual ICollection<Machine> Machines { get; set; } = new List<Machine>();
}