Move files for better organization

This commit is contained in:
2026-02-18 09:24:20 +09:00
parent 6e23371858
commit b197f43341
60 changed files with 32 additions and 63 deletions
+25
View File
@@ -0,0 +1,25 @@
#nullable enable
using DialogHostAvalonia;
namespace ReceiptPDFBuilder.ViewModels;
class WarningViewModel
{
private string _error;
public WarningViewModel(string error)
{
_error = error;
}
public string Error
{
get => _error;
}
public void Close()
{
DialogHost.Close("DialogHost", null);
}
}