Integrated Person View

This commit is contained in:
Simon Martens
2023-07-04 08:36:25 +02:00
parent cf0bc3cddf
commit 04ebd5d90d
10 changed files with 40 additions and 33 deletions

View File

@@ -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;
}