| 123456789101112131415161718192021222324252627282930 | 
							- using System.Reactive;
 
- using Avalonia.Controls.Notifications;
 
- using ReactiveUI;
 
- namespace ControlCatalog.ViewModels
 
- {
 
-     public class NotificationViewModel
 
-     {
 
-         public NotificationViewModel(INotificationManager manager)
 
-         {
 
-             YesCommand = ReactiveCommand.Create(() =>
 
-             {
 
-                 manager.Show(new Avalonia.Controls.Notifications.Notification("Avalonia Notifications", "Start adding notifications to your app today."));
 
-             });
 
-             NoCommand = ReactiveCommand.Create(() =>
 
-             {
 
-                 manager.Show(new Avalonia.Controls.Notifications.Notification("Avalonia Notifications", "Start adding notifications to your app today. To find out more visit..."));
 
-             });
 
-         }
 
-         public string Title { get; set; }
 
-         public string Message { get; set; }
 
-         public ReactiveCommand<Unit, Unit> YesCommand { get; }
 
-         public ReactiveCommand<Unit, Unit> NoCommand { get; }
 
-     }
 
- }
 
 
  |