10 lines
291 B
C#
10 lines
291 B
C#
using System.Collections.Generic;
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace Ursa.Demo.ViewModels;
|
|
|
|
public partial class PathPickerDemoViewModel : ViewModelBase
|
|
{
|
|
[ObservableProperty] private string? _path;
|
|
[ObservableProperty] private IReadOnlyList<string>? _paths;
|
|
} |