15 lines
283 B
C#
15 lines
283 B
C#
using System;
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace Ursa.Demo.Dialogs;
|
|
|
|
public class PlainDialogViewModel: ObservableObject
|
|
{
|
|
private DateTime? _date;
|
|
|
|
public DateTime? Date
|
|
{
|
|
get => _date;
|
|
set => SetProperty(ref _date, value);
|
|
}
|
|
} |