feat: implement core domain models, authentication service, and UI components for the attendance system

This commit is contained in:
2026-07-31 14:39:25 -04:00
commit f476f704eb
329 changed files with 12622 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
using Avalonia.Controls;
namespace Asistencia.Views;
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}