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