feat: WIP: add template.
This commit is contained in:
10
demo/Ursa.Demo/ViewModels/PaginationDemoViewModel.cs
Normal file
10
demo/Ursa.Demo/ViewModels/PaginationDemoViewModel.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.Collections.ObjectModel;
|
||||
using Avalonia.Collections;
|
||||
using CommunityToolkit.Mvvm.ComponentModel;
|
||||
|
||||
namespace Ursa.Demo.ViewModels;
|
||||
|
||||
public class PaginationDemoViewModel: ObservableObject
|
||||
{
|
||||
public AvaloniaList<int> PageSizes { get; set; } = new() { 10, 20, 50, 100 };
|
||||
}
|
||||
Reference in New Issue
Block a user