Files
Prowlarr/src/Radarr.Http/Authentication/NzbDroneUser.cs
T
2019-06-11 22:06:19 -04:00

13 lines
261 B
C#

using System.Collections.Generic;
using Nancy.Security;
namespace Radarr.Http.Authentication
{
public class NzbDroneUser : IUserIdentity
{
public string UserName { get; set; }
public IEnumerable<string> Claims { get; set; }
}
}