1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-27 01:57:21 +00:00
Lidarr/NzbDrone.Api/Authentication/NzbDroneUser.cs
2013-07-18 20:47:55 -07:00

12 lines
262 B
C#

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