mirror of
https://github.com/SoDOff-Project/sodoff-mmo.git
synced 2025-10-11 16:28:50 -07:00
15 lines
389 B
C#
15 lines
389 B
C#
using sodoffmmo.Management;
|
|
|
|
namespace sodoffmmo.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
|
|
public class ManagementCommandAttribute : Attribute {
|
|
public string Name { get; set; }
|
|
public Role Role { get; set; }
|
|
|
|
public ManagementCommandAttribute(string name, Role role) {
|
|
Name = name;
|
|
Role = role;
|
|
}
|
|
}
|