- Created MemberCenter.Installer project with references to Infrastructure, Application, and Domain projects. - Added Program.cs with a basic console output. - Generated MemberCenterDbContextModelSnapshot for database schema representation.
9 lines
216 B
C#
9 lines
216 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace MemberCenter.Infrastructure.Identity;
|
|
|
|
public class ApplicationRole : IdentityRole<Guid>
|
|
{
|
|
public DateTimeOffset CreatedAt { get; set; } = DateTimeOffset.UtcNow;
|
|
}
|