15 lines
319 B
C#
15 lines
319 B
C#
|
using Microsoft.AspNetCore.Identity;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Syski.Data
|
|||
|
{
|
|||
|
public class ApplicationUser : IdentityUser
|
|||
|
{
|
|||
|
|
|||
|
public IEnumerable<ApplicationUserSystems> Systems { get; set; }
|
|||
|
|
|||
|
public IEnumerable<AuthenticationToken> AuthenticationTokens { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|