Y2S2-Syski/syski_api/uk.co.syski.data/ApplicationUser.cs

15 lines
319 B
C#
Raw Permalink Normal View History

2020-06-09 20:02:14 +00:00
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; }
}
}