25 lines
635 B
C#
25 lines
635 B
C#
namespace MxGateway.Client;
|
|
|
|
public sealed record DiscoverHierarchyOptions
|
|
{
|
|
public int? RootGobjectId { get; init; }
|
|
|
|
public string? RootTagName { get; init; }
|
|
|
|
public string? RootContainedPath { get; init; }
|
|
|
|
public int? MaxDepth { get; init; }
|
|
|
|
public IReadOnlyList<int> CategoryIds { get; init; } = Array.Empty<int>();
|
|
|
|
public IReadOnlyList<string> TemplateChainContains { get; init; } = Array.Empty<string>();
|
|
|
|
public string? TagNameGlob { get; init; }
|
|
|
|
public bool? IncludeAttributes { get; init; }
|
|
|
|
public bool AlarmBearingOnly { get; init; }
|
|
|
|
public bool HistorizedOnly { get; init; }
|
|
}
|