Line Numbers on <page>

This commit is contained in:
Simon Martens
2022-11-22 12:34:55 +01:00
parent 5e90e917f1
commit 3523dfb92c
16 changed files with 457 additions and 60 deletions

View File

@@ -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; }