mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 17:25:32 +00:00
15 lines
462 B
C#
15 lines
462 B
C#
namespace HaWeb.Settings.NodeRules;
|
|
|
|
using System.Collections.Generic;
|
|
using HaWeb.XMLTests;
|
|
|
|
public class MarginalNode : INodeRule
|
|
{
|
|
public string Name => "marginal";
|
|
public string XPath => "//marginal";
|
|
public string[]? Attributes { get; } = { "index", "letter", "page", "line" };
|
|
public string? uniquenessAttribute => "index";
|
|
public List<(string, string, string)>? References { get; } = new List<(string, string, string)>()
|
|
{
|
|
};
|
|
} |