Initial commit

This commit is contained in:
Jason Dove
2021-02-08 21:13:53 -06:00
commit 4d52e115b5
493 changed files with 31399 additions and 0 deletions
@@ -0,0 +1,11 @@
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; }
}
}