9 lines
202 B
C#
9 lines
202 B
C#
using IntegrationGateway.Core.Models;
|
|
|
|
namespace IntegrationGateway.Core.Abstractions;
|
|
|
|
public interface IHasOwnDeviceTree : IIntegrationAdapter
|
|
{
|
|
Task<List<DeviceTreeNode>> GetObjectTreeAsync();
|
|
}
|