mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 01:29:38 -04:00
19 lines
437 B
C#
19 lines
437 B
C#
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;
|
|
}
|
|
}
|