mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-07-03 01:03:41 -04:00
Add project files.
This commit is contained in:
18
ObservatoryCore/UI/ViewModels/NotificationViewModel.cs
Normal file
18
ObservatoryCore/UI/ViewModels/NotificationViewModel.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Observatory.UI.ViewModels
|
||||
{
|
||||
public class NotificationViewModel : ViewModelBase
|
||||
{
|
||||
public NotificationViewModel(string title, string detail)
|
||||
{
|
||||
Notification = new() { Title = title, Detail = detail };
|
||||
}
|
||||
|
||||
public Models.NotificationModel Notification;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user