mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 17:25:32 +00:00
16 lines
387 B
C#
16 lines
387 B
C#
namespace HaDocument.Models {
|
|
public class Letter : HaModel {
|
|
public string Index { get; } = "";
|
|
public string Element { get; } = "";
|
|
public string Value { get; } = "";
|
|
|
|
public Letter(
|
|
string index,
|
|
string element,
|
|
string value
|
|
) {
|
|
Index = index;
|
|
Element = element;
|
|
}
|
|
}
|
|
} |