Ombi/PlexRequests.Core/SettingModels/PushoverNotificationSettings.cs
2016-03-22 22:17:06 +00:00

9 lines
No EOL
261 B
C#

namespace PlexRequests.Core.SettingModels
{
public class PushoverNotificationSettings : Settings
{
public bool Enabled { get; set; }
public string AccessToken { get; set; }
public string UserToken { get; set; }
}
}