20 lines
344 B
C#
20 lines
344 B
C#
using Estara.ViewModels;
|
|
|
|
using Microsoft.UI.Xaml.Controls;
|
|
|
|
namespace Estara.Views;
|
|
|
|
public sealed partial class ContentGridPage : Page
|
|
{
|
|
public ContentGridViewModel ViewModel
|
|
{
|
|
get;
|
|
}
|
|
|
|
public ContentGridPage()
|
|
{
|
|
ViewModel = App.GetService<ContentGridViewModel>();
|
|
InitializeComponent();
|
|
}
|
|
}
|