Files
work/Strela/Models/DeviceItem.cs
T
astankovmi 2883b537ab
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 11s
Проверки и отправка в Visor
2026-07-13 15:11:05 +03:00

28 lines
748 B
C#

namespace Strela.Models
{
public class DeviceItem
{
public Guid Id { get; set; }
public string? Ip { get; set; }
public string? Mac { get; set; }
public string? Description { get; set; }
public string? Name { get; set; }
public string? Location { get; set; }
public List<DeviceItem>? ListDevices { get; set; }
public DeviceType? DeviceType { get; set; }
public ObjectItem? DeviceObject { get; set; }
public Guid ConnectedToSwitchId { get; set; }
public int ConnectedToPortOnSwitch { get; set; }
}
//Unknown = 0,
//SwitchCore = 1,
//SwitchAccess = 2,
//Camera = 3,
//Server = 4,
//WorkStation = 5,
//PDU_AVR = 6,
}