using System.Collections.Generic; using CommunityToolkit.Mvvm.ComponentModel; namespace Ursa.Demo.ViewModels; public partial class PathPickerDemoViewModel : ViewModelBase { [ObservableProperty] private string? _path; [ObservableProperty] private IReadOnlyList? _paths; }