* Maintain DataModel for User, Role, Function and UserRole
This commit is contained in:
11
OrdersManagementDataModel/Entities/Function.cs
Normal file
11
OrdersManagementDataModel/Entities/Function.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace OrdersManagementDataModel.Entities;
|
||||
|
||||
public class Function
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public int RoleId { get; set; }
|
||||
public string Name { get; set; }
|
||||
public Guid RowPointer { get; set; }
|
||||
|
||||
public Role Role { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user