RobotNet/RobotNet.IdentityServer/Data/ApplicationRole.cs
2025-10-15 15:15:53 +07:00

10 lines
213 B
C#

using Microsoft.AspNetCore.Identity;
namespace RobotNet.IdentityServer.Data
{
public class ApplicationRole : IdentityRole
{
public DateTime CreatedDate { get; set; } = DateTime.UtcNow;
}
}