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

9 lines
No EOL
274 B
C#

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