mirror of
https://dev.azure.com/tstanciu94/NetworkResurrector/_git/NetworkResurrector
synced 2025-06-21 19:17:04 +03:00
13 lines
381 B
C#
13 lines
381 B
C#
namespace NetworkResurrector.Agent.Domain.Entities
|
|
{
|
|
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; }
|
|
}
|
|
}
|