17 lines
412 B
C#
17 lines
412 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace Moonlight.Frontend.Models;
|
|
|
|
public class Permission
|
|
{
|
|
public string Identifier { get; init; }
|
|
public string Name { get; init; }
|
|
public string Description { get; init; }
|
|
|
|
public Permission(string identifier, string name, string description)
|
|
{
|
|
Identifier = identifier;
|
|
Name = name;
|
|
Description = description;
|
|
}
|
|
} |