ini
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
namespace AuthHex.Models
|
||||
{
|
||||
public class Role
|
||||
{
|
||||
public Guid RoleId { get; set; }
|
||||
|
||||
public string Code { get; set; } = string.Empty; // ADMIN, USER, STAFF
|
||||
public string?Name { get; set; } = string.Empty;
|
||||
|
||||
public bool? IsSystemRole { get; set; }
|
||||
|
||||
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user