mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 17:25:32 +00:00
23 lines
602 B
C#
23 lines
602 B
C#
namespace HaDocument.Models {
|
|
public class Marginal {
|
|
public string Index { get; } = "";
|
|
public string Letter { get; } = "";
|
|
public string Page { get; } = "";
|
|
public string Line { get; } = "";
|
|
public string Element { get; } = "";
|
|
|
|
public Marginal(
|
|
string index,
|
|
string letter,
|
|
string page,
|
|
string line,
|
|
string elemnt
|
|
) {
|
|
Index = index;
|
|
Letter = letter;
|
|
Page = page;
|
|
Line = line;
|
|
Element = elemnt;
|
|
}
|
|
}
|
|
} |