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