Dynamic User Roles

This commit is contained in:
Shaun Walker
2019-08-20 16:43:35 -04:00
parent de4fa48a29
commit 42c6efbfdb
51 changed files with 942 additions and 193 deletions

View File

@ -0,0 +1,18 @@
using System;
namespace Oqtane.Models
{
public class Role : IAuditable
{
public int RoleId { get; set; }
public int SiteId { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public bool IsAutoAssigned { get; set; }
public string CreatedBy { get; set; }
public DateTime CreatedOn { get; set; }
public string ModifiedBy { get; set; }
public DateTime ModifiedOn { get; set; }
}
}