mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 09:15:33 +00:00
Line Numbers on <page>
This commit is contained in:
@@ -9,6 +9,8 @@ public class BriefeMetaViewModel {
|
||||
private string? _ParsedSenders;
|
||||
private string? _ParsedReceivers;
|
||||
private string? _ParsedZHString;
|
||||
private string? _Startline;
|
||||
private string? _Startpage;
|
||||
|
||||
public string? ParsedSenders {
|
||||
get => _ParsedSenders;
|
||||
@@ -42,6 +44,26 @@ public class BriefeMetaViewModel {
|
||||
}
|
||||
}
|
||||
|
||||
public string? Startline {
|
||||
get => _Startline;
|
||||
set {
|
||||
if (value != null)
|
||||
_Startline = HttpUtility.HtmlEncode(value);
|
||||
else
|
||||
_Startline = value;
|
||||
}
|
||||
}
|
||||
|
||||
public string? Startpage {
|
||||
get => _Startpage;
|
||||
set {
|
||||
if (value != null)
|
||||
_Startpage = HttpUtility.HtmlEncode(value);
|
||||
else
|
||||
_Startpage = value;
|
||||
}
|
||||
}
|
||||
|
||||
public (BriefeMetaViewModel, string)? Next { get; set; }
|
||||
public (BriefeMetaViewModel, string)? Prev { get; set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user