mirror of
https://github.com/Readarr/Readarr
synced 2026-05-05 03:00:35 +02:00
12 lines
261 B
C#
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; }
|
|
}
|
|
}
|