11 lines
255 B
C#
11 lines
255 B
C#
|
|
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; }
|
||
|
|
|
||
|
|
}
|