Readarr/src/Lidarr.Http/Authentication/NzbDroneUser.cs
2017-09-05 23:38:05 -04:00

12 lines
261 B
C#

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