mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 09:15:33 +00:00
Integrated Person View
This commit is contained in:
@@ -6,10 +6,12 @@ using HaXMLReader.Interfaces;
|
||||
using HaXMLReader.EvArgs;
|
||||
|
||||
public class CommentModel {
|
||||
public string ID { get; private set; }
|
||||
public string ParsedComment { get; private set; }
|
||||
public List<string>? ParsedSubComments { get; private set; }
|
||||
|
||||
public CommentModel(string parsedComment, List<string>? parsedSubComments) {
|
||||
public CommentModel(string parsedComment, List<string>? parsedSubComments, string id) {
|
||||
this.ID = id;
|
||||
this.ParsedComment = parsedComment;
|
||||
this.ParsedSubComments = parsedSubComments;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user