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