Y2S2-Syski/syski_api/uk.co.syski.data/ApplicationUser.cs
2020-06-09 21:02:14 +01:00

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; }
}
}