mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 09:15:33 +00:00
25 lines
777 B
C#
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;
|
|
}
|
|
} |