Ombi/PlexRequests.Core/SettingModels/PushoverNotificationSettings.cs
2016-06-28 16:32:57 +01:00

9 lines
No EOL
265 B
C#

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