#1456 Started on the User Importer

Also added the remember me button
This commit is contained in:
Jamie.Rees 2017-09-14 14:08:07 +01:00
commit 36d93d5a9d
21 changed files with 3685 additions and 376 deletions

View file

@ -7,6 +7,10 @@ namespace Ombi.Store.Entities
{
public string Alias { get; set; }
public UserType UserType { get; set; }
/// <summary>
/// This will be the unique Plex/Emby user id reference
/// </summary>
public string ProviderUserId { get; set; }
[NotMapped]
public string UserAlias => string.IsNullOrEmpty(Alias) ? UserName : Alias;