mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
11 lines
215 B
C#
11 lines
215 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace NzbDrone.Core.Notifications.Plex
|
|
{
|
|
public class PlexUser
|
|
{
|
|
[JsonProperty("authentication_token")]
|
|
public string AuthenticationToken { get; set; }
|
|
}
|
|
}
|