Ombi/PlexRequests.Core/SettingModels/PushBulletNotificationSettings.cs
2016-03-17 14:34:55 +00:00

9 lines
No EOL
270 B
C#

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