mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-25 22:36:59 -04:00
23bc5b11cf
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
15 lines
345 B
C#
15 lines
345 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace NzbDrone.Core.Notifications.PushBullet
|
|
{
|
|
public class PushBulletDevice
|
|
{
|
|
[JsonProperty(PropertyName = "Iden")]
|
|
public string Id { get; set; }
|
|
|
|
public string Nickname { get; set; }
|
|
public string Manufacturer { get; set; }
|
|
public string Model { get; set; }
|
|
}
|
|
}
|