mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-12-16 14:35:32 +00:00
added basic start page setup; began rewrite of parser
This commit is contained in:
@@ -1,23 +1,27 @@
|
||||
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;
|
||||
}
|
||||
namespace HaDocument.Models;
|
||||
using System.Xml.Linq;
|
||||
|
||||
public class Marginal {
|
||||
public string Index { get; }
|
||||
public string Letter { get; }
|
||||
public string Page { get; }
|
||||
public string Line { get; }
|
||||
public XElement Element { get; }
|
||||
public string Value { get; }
|
||||
|
||||
public Marginal(
|
||||
XElement element,
|
||||
string value,
|
||||
string index,
|
||||
string letter,
|
||||
string page,
|
||||
string line
|
||||
) {
|
||||
Index = index;
|
||||
Letter = letter;
|
||||
Page = page;
|
||||
Line = line;
|
||||
Element = element;
|
||||
Value = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user