mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 05:31:13 -07:00
16 lines
349 B
C#
16 lines
349 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using Nancy.Security;
|
|
|
|
namespace RequestPlex.Core
|
|
{
|
|
public class UserIdentity : IUserIdentity
|
|
{
|
|
public string UserName { get; set; }
|
|
public IEnumerable<string> Claims { get; set; }
|
|
}
|
|
}
|