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