Files
DMS/Data/Entities/DbDevice.cs

11 lines
255 B
C#
Raw Normal View History

2025-06-10 22:13:06 +08:00
namespace PMSWPF.Data.Entities;
public class DbDevice
{
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public bool IsActive { get; set; }
public bool IsRuning { get; set; }
}