mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-30 01:35:32 +00:00
Deployment v1
This commit is contained in:
13
HaWeb/Models/XMLParsingState.cs
Normal file
13
HaWeb/Models/XMLParsingState.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace HaWeb.Models;
|
||||
|
||||
public class XMLParsingState : EventArgs {
|
||||
internal List<FileModel>? ManagedFiles { get; set; }
|
||||
internal Dictionary<string, FileList?>? Loaded { get; set; }
|
||||
internal bool ValidState { get; set; }
|
||||
|
||||
public XMLParsingState() {
|
||||
ManagedFiles = new();
|
||||
Loaded = new();
|
||||
ValidState = false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user