Vereinsmeisterschaften  22aa7800eae54b428d40e835886cefe1fdefdfdf
This is a software that can be used to manage the internal competition of the swimming club Illertissen called "Vereinsmeisterschaften".
Loading...
Searching...
No Matches
DocumentCreationStatus.cs
1using CommunityToolkit.Mvvm.ComponentModel;
2
4{
8 public partial class DocumentCreationStatus : ObservableObject
9 {
13 [ObservableProperty]
14 private bool _isDocumentCreationRunning = false;
15
19 [ObservableProperty]
20 private bool _isDocumentCreationSuccessful = false;
21
25 [ObservableProperty]
26 private bool _isDocumentDataAvailable = false;
27
31 [ObservableProperty]
32 private bool _isDocumentTemplateAvailable = false;
33
37 [ObservableProperty]
38 private string _lastDocumentFilePath = string.Empty;
39 }
40}
Class combining informations used while document creation.
bool _isDocumentDataAvailable
State of whether data is available for document creation.
bool _isDocumentTemplateAvailable
State of whether the template file is available for document creation.
bool _isDocumentCreationRunning
State of whether a document creation process is currently running.
string _lastDocumentFilePath
File path of the last created document.
bool _isDocumentCreationSuccessful
State of whether a document creation process was successful.