Проверки и отправка в Visor
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 11s

This commit is contained in:
2026-07-13 15:11:05 +03:00
parent 6d61bce884
commit 2883b537ab
14 changed files with 517 additions and 303 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
{
public class DeviceItem
{
public int Id { get; set; }
public Guid Id { get; set; }
public string? Ip { get; set; }
public string? Mac { get; set; }
public string? Description { get; set; }
@@ -11,7 +11,7 @@
public List<DeviceItem>? ListDevices { get; set; }
public DeviceType? DeviceType { get; set; }
public ObjectItem? DeviceObject { get; set; }
public int ConnectedToSwitchId { get; set; }
public Guid ConnectedToSwitchId { get; set; }
public int ConnectedToPortOnSwitch { get; set; }
}
+1 -1
View File
@@ -2,7 +2,7 @@
{
public class DeviceType
{
public int Id { get; set; }
public Guid Id { get; set; }
public string Name { get; set; }
public string? Description { get; set; }
}
+1 -1
View File
@@ -2,7 +2,7 @@
{
public class ObjectItem
{
public int Id { get; set; }
public Guid Id { get; set; }
public string NameObject { get; set; } = "Unknown";
public string? DescriptionObject { get; set; } = null;
}