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

28 lines
552 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 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; }
2025-01-02 17:53:38 -05:00
public virtual Location? Location { get; set; }
public virtual User? User { get; set; }
}