2021-04-06 02:33:52 +03:00
|
|
|
|
namespace NetworkResurrector.Api.Domain.Entities
|
2020-12-23 01:18:25 +02:00
|
|
|
|
{
|
|
|
|
|
public class Machine
|
|
|
|
|
{
|
|
|
|
|
public int MachineId { get; set; }
|
|
|
|
|
public string MachineName { get; set; }
|
|
|
|
|
public string FullMachineName { get; set; }
|
|
|
|
|
public string MACAddress { get; set; }
|
|
|
|
|
public string IPv4Address { get; set; }
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|