Files
hamann-ausgabe-core/HaWeb/XMLTests/IXMLTestService.cs
2023-05-11 17:15:04 +02:00

9 lines
223 B
C#

namespace HaWeb.XMLTests;
public interface IXMLTestService {
public Dictionary<string, INodeRule>? Ruleset { get; }
public Dictionary<string, ICollectionRule>? CollectionRuleset { get; }
public void Test();
}