18 lines
625 B
C#
18 lines
625 B
C#
namespace IntegrationGateway.Core.Models;
|
|
|
|
public class StandardDevice
|
|
{
|
|
public string SourceId { get; set; } = "";
|
|
public string AdapterCode { get; set; } = "";
|
|
public string Name { get; set; } = "";
|
|
public string Category { get; set; } = "";
|
|
public string Group { get; set; } = "";
|
|
public string? IpAddress { get; set; }
|
|
public int? Port { get; set; }
|
|
public bool IsOnline { get; set; }
|
|
public bool IsParent { get; set; }
|
|
public string? ParentSourceId { get; set; }
|
|
public Dictionary<string, object?> Extra { get; set; } = new();
|
|
public DateTime LastSyncTime { get; set; }
|
|
}
|