22 lines
614 B
C#
22 lines
614 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
using BlueWest.Data;
|
||
|
using BlueWest.Data.Application;
|
||
|
using CodeLiturgy.Data.Capital;
|
||
|
using MapTo;
|
||
|
using Microsoft.AspNetCore.Identity;
|
||
|
|
||
|
namespace BlueWest.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; }
|
||
|
}
|
||
|
}
|