mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-30 01:35:32 +00:00
Formatted everything; completed upload capabilities
This commit is contained in:
@@ -5,13 +5,11 @@ using System.Text;
|
||||
using HaXMLReader.Interfaces;
|
||||
using HaXMLReader.EvArgs;
|
||||
|
||||
public class CommentModel
|
||||
{
|
||||
public class CommentModel {
|
||||
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) {
|
||||
this.ParsedComment = parsedComment;
|
||||
this.ParsedSubComments = parsedSubComments;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user