13 lines
481 B
C#
13 lines
481 B
C#
using Fengling.Platform.Domain.AggregatesModel.TenantAggregate;
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace Fengling.Platform.Domain.AggregatesModel.UserAggregate;
|
|
|
|
public class ApplicationUser : IdentityUser<long>
|
|
{
|
|
public string RealName { get; set; }
|
|
public TenantInfo? TenantInfo { get; set; }
|
|
public DateTimeOffset CreatedTime { get; set; } = DateTimeOffset.UtcNow;
|
|
public DateTimeOffset? UpdatedTime { get; set; }
|
|
public bool IsDeleted { get; set; }
|
|
} |