Adding biolerplate for other pages

This commit is contained in:
2025-11-29 10:30:17 -06:00
parent 5eb795fe22
commit 5515f981cd
8 changed files with 60 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
namespace SessionZero.Pages;
public partial class LibraryPage : UserControl, IPageBase
{
public string PageName { get; set; } = "Library";
public LibraryPage()
{
InitializeComponent();
}
}