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

28 lines
552 B
C#

using System;
using System.Collections.Generic;
namespace CH.Dal.DbEntity;
public partial class Machine
{
public long Id { get; set; }
public string Name { get; set; } = null!;
public string Address { get; set; } = null!;
public bool Status { get; set; }
public long? LocationId { get; set; }
public long? UserId { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
public virtual Location? Location { get; set; }
public virtual User? User { get; set; }
}