mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 09:15:33 +00:00
19 lines
373 B
C#
19 lines
373 B
C#
namespace HaDocument.Models;
|
|
using System.Xml.Linq;
|
|
using System.Xml;
|
|
|
|
public class Letter {
|
|
public string Index { get; }
|
|
public XElement Element { get; }
|
|
public string Value { get; }
|
|
|
|
public Letter(
|
|
string index,
|
|
XElement element,
|
|
string value
|
|
) {
|
|
Index = index;
|
|
Element = element;
|
|
Value = value;
|
|
}
|
|
} |