15 lines
380 B
C#
15 lines
380 B
C#
namespace Moonlight.Frontend.Admin.Users.Shared;
|
|
|
|
public class Permission
|
|
{
|
|
public Permission(string identifier, string name, string description)
|
|
{
|
|
Identifier = identifier;
|
|
Name = name;
|
|
Description = description;
|
|
}
|
|
|
|
public string Identifier { get; init; }
|
|
public string Name { get; init; }
|
|
public string Description { get; init; }
|
|
} |