Seenginx/Seenginx.Models/NotificationSettings.cs

13 lines
232 B
C#
Raw Permalink Normal View History

2020-07-02 09:15:33 +02:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Seenginx.Models
{
public class NotificationSettings
{
public string Text { get; set; }
public PopupType PopupType { get; set; }
}
}