Initial commit

This commit is contained in:
2026-01-02 12:04:16 +09:00
commit 14444f1f47
27 changed files with 1521 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
namespace ReceiptPDFBuilder.Views
{
public partial class MainView : UserControl
{
public MainView()
{
this.InitializeComponent();
}
}
}