mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-28 16:55:32 +00:00
10 lines
340 B
C#
10 lines
340 B
C#
using System.Xml.Linq;
|
|
|
|
public interface IHaElement : IComparable {
|
|
abstract public string ElementName { get; }
|
|
abstract public string[] XPath { get; }
|
|
abstract public string ElementRules { get; }
|
|
abstract public XElement? XElement { get; }
|
|
abstract public bool Searchable { get; }
|
|
abstract public string GetKey();
|
|
} |