using Microsoft.AspNetCore.Identity; namespace MemberCenter.Infrastructure.Identity; public class ApplicationUser : IdentityUser { public DateTimeOffset CreatedAt { get; set; } = DateTimeOffset.UtcNow; public bool IsBlacklisted { get; set; } public DateTimeOffset? BlacklistedAt { get; set; } public string? BlacklistedBy { get; set; } }