11 lines
315 B
C#
11 lines
315 B
C#
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using Avalonia.Collections;
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace Ursa.Demo.ViewModels;
|
|
|
|
public class PaginationDemoViewModel: ViewModelBase
|
|
{
|
|
public AvaloniaList<int> PageSizes { get; set; } = new() { 10, 20, 50, 100 };
|
|
} |