mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-30 01:35:32 +00:00
- Commentboxes work (marginals) + mouseover
- Basic Briefe Controller - Generic XML reader
This commit is contained in:
24
HaWeb/Models/BriefeViewModel.cs
Normal file
24
HaWeb/Models/BriefeViewModel.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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 string? ParsedEdits { get; set; }
|
||||
|
||||
public BriefeMetaViewModel? Next { get; set; }
|
||||
public BriefeMetaViewModel? Prev { get; set; }
|
||||
|
||||
public BriefeViewModel(string id, string index, BriefeMetaViewModel meta)
|
||||
{
|
||||
Id = id;
|
||||
Index = index;
|
||||
Meta = meta;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user