Added pills, but not for ZH

This commit is contained in:
schnulller
2022-05-22 06:40:55 +02:00
parent 8179ea6e68
commit 45b5999981
9 changed files with 328 additions and 21 deletions

View File

@@ -4,18 +4,19 @@ using HaDocument.Models;
public class BriefeMetaViewModel
{
public Meta Meta { get; private set; }
public bool ShowSurroundingLetterLinks { get; private set; }
public bool ShowPDFButton { get; private set; }
public bool HasMarginals { get; private set; }
public string? ParsedSenders { get; set; }
public string? ParsedReceivers { get; set; }
public string? ParsedZHString { get; set; }
public (BriefeMetaViewModel, string)? Next { get; set; }
public (BriefeMetaViewModel, string)? Prev { get; set; }
public BriefeMetaViewModel(Meta meta)
public BriefeMetaViewModel(Meta meta, bool hasMarginals)
{
Meta = meta;
HasMarginals = hasMarginals;
}
}