11 lines
258 B
C#
11 lines
258 B
C#
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; }
|
|
} |