using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using CodeLiturgy.Data; using CodeLiturgy.Data.Application; using CodeLiturgy.Data.Application; using MapTo; using Microsoft.AspNetCore.Identity; namespace CodeLiturgy.Data.Application.Users { /// /// Application User in the Identity System. /// public partial class ApplicationUser : IdentityUser { public new string Id { get; set; } public List Environments { get; set; } public List Sites { get; set; } } }