Skip to content

Commit

Permalink
Merge branch 'dev-db-per-tenant' of https://github.com/aspnetboilerpl…
Browse files Browse the repository at this point in the history
  • Loading branch information
hikalkan committed May 3, 2016
2 parents fa92550 + 1005d22 commit ccebd13
Show file tree
Hide file tree
Showing 3 changed files with 221 additions and 197 deletions.
10 changes: 5 additions & 5 deletions src/Abp.Zero/Authorization/Users/UserAccount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ namespace Abp.Authorization.Users
[MultiTenancySide(MultiTenancySides.Host)]
public class UserAccount : FullAuditedEntity<long>
{
public int? TenantId { get; set; }
public virtual int? TenantId { get; set; }

public long UserId { get; set; }
public virtual long UserId { get; set; }

public long? UserLinkId { get; set; }
public virtual long? UserLinkId { get; set; }

public string UserName { get; set; }
public virtual string UserName { get; set; }

public string EmailAddress { get; set; }
public virtual string EmailAddress { get; set; }

public virtual DateTime? LastLoginTime { get; set; }
}
Expand Down
Loading

0 comments on commit ccebd13

Please sign in to comment.