mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 01:29:38 -04:00
15 lines
288 B
C#
15 lines
288 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Observatory.UI.Models
|
|
{
|
|
public class NotificationModel
|
|
{
|
|
public string Title { get; set; }
|
|
public string Detail { get; set; }
|
|
}
|
|
}
|