Files
Readarr/src/NzbDrone.Core/Notifications/Plex/PlexUser.cs
2016-12-23 13:45:24 -08:00

11 lines
215 B
C#

using Newtonsoft.Json;
namespace NzbDrone.Core.Notifications.Plex
{
public class PlexUser
{
[JsonProperty("authentication_token")]
public string AuthenticationToken { get; set; }
}
}