Files
hamann-ausgabe-core/HaWeb/Models/BriefeViewModel.cs
schnulller d054cf07e1 - Abstracted the XML-HTML Parser into a neat little state machine
- Added Settings classes for all things XML-HTML conversion
2022-05-19 22:34:49 +02:00

25 lines
777 B
C#

namespace HaWeb.Models;
public class BriefeViewModel
{
public string Id { get; private set; }
public string Index { get; private set; }
public BriefeMetaViewModel Meta { get; private set; }
public string? ParsedText { get; set; }
public string? ParsedLineCount { get; set; }
public string? ParsedMarginals { get; set; }
public string? ParsedTradition { get; set; }
public List<string>? ParsedEdits { get; set; }
public List<string>? ParsedHands { get; set; }
public (BriefeMetaViewModel, string)? Next { get; set; }
public (BriefeMetaViewModel, string)? Prev { get; set; }
public BriefeViewModel(string id, string index, BriefeMetaViewModel meta)
{
Id = id;
Index = index;
Meta = meta;
}
}