18 lines
337 B
C#
18 lines
337 B
C#
using WPFluent.Gallery.ViewModels.Pages.Collections;
|
|
|
|
namespace WPFluent.Gallery.Views.Pages.Collections;
|
|
|
|
public partial class CollectionsPage
|
|
{
|
|
public CollectionsViewModel ViewModel { get; }
|
|
|
|
public CollectionsPage()
|
|
{
|
|
ViewModel = new();
|
|
DataContext = ViewModel;
|
|
|
|
|
|
InitializeComponent();
|
|
}
|
|
}
|