using Microsoft.AspNetCore.Identity; using System.Collections.Generic; namespace Syski.Data { public class ApplicationUser : IdentityUser { public IEnumerable Systems { get; set; } public IEnumerable AuthenticationTokens { get; set; } } }