Files
SecMPS/gateway/src/IntegrationGateway.Core/Abstractions/IHasOwnDeviceTree.cs
2026-05-15 23:22:48 +08:00

9 lines
202 B
C#

using IntegrationGateway.Core.Models;
namespace IntegrationGateway.Core.Abstractions;
public interface IHasOwnDeviceTree : IIntegrationAdapter
{
Task<List<DeviceTreeNode>> GetObjectTreeAsync();
}