fengling-platform/Fengling.Platform.Domain/AggregatesModel/UserAggregate/ApplicationUser.cs
2026-02-21 15:05:37 +08:00

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; }
}