Files
ersatztv/ErsatzTV.Infrastructure/Plex/PlexSecrets.cs
T
2021-02-08 21:13:53 -06:00

12 lines
319 B
C#

using System.Collections.Generic;
namespace ErsatzTV.Infrastructure.Plex
{
public class PlexSecrets
{
public string ClientIdentifier { get; set; }
public Dictionary<string, string> UserAuthTokens { get; set; }
public Dictionary<string, string> ServerAuthTokens { get; set; }
}
}