mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 17:25:32 +00:00
TOns of stuff, made letters more reactive, introduced dark theme toggle
This commit is contained in:
@@ -5,6 +5,7 @@ public class BriefeMetaViewModel
|
||||
{
|
||||
public Meta Meta { get; private set; }
|
||||
public bool HasMarginals { get; private set; }
|
||||
public bool ShowZHData { get; private set; }
|
||||
|
||||
public string? ParsedSenders { get; set; }
|
||||
public string? ParsedReceivers { get; set; }
|
||||
@@ -14,9 +15,10 @@ public class BriefeMetaViewModel
|
||||
public (BriefeMetaViewModel, string)? Prev { get; set; }
|
||||
|
||||
|
||||
public BriefeMetaViewModel(Meta meta, bool hasMarginals)
|
||||
public BriefeMetaViewModel(Meta meta, bool hasMarginals, bool showZHData)
|
||||
{
|
||||
Meta = meta;
|
||||
HasMarginals = hasMarginals;
|
||||
ShowZHData = showZHData;
|
||||
}
|
||||
}
|
||||
@@ -7,8 +7,7 @@ public class BriefeViewModel
|
||||
public BriefeMetaViewModel MetaData { get; private set; }
|
||||
|
||||
public string? ParsedText { get; set; }
|
||||
public string? ParsedLineCount { get; set; }
|
||||
public string? ParsedMarginals { get; set; }
|
||||
public List<(string, string, string)>? ParsedMarginals { get; set; }
|
||||
public string? ParsedTradition { get; set; }
|
||||
// From, Until, Reference, Edit, sartpage, startline
|
||||
public List<(string, string, string, string, string, string)>? ParsedEdits { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user