22 lines
627 B
C#
22 lines
627 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// Application User in the Identity System.
|
|
/// </summary>
|
|
[MapFrom(typeof(ApplicationUserUnique))]
|
|
[UseUpdate]
|
|
public partial class ApplicationUser : IdentityUser<string>
|
|
{
|
|
public List<SiteEnvironment> Environments { get; set; }
|
|
}
|
|
} |