mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
19 lines
482 B
C#
19 lines
482 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Robust.Shared.Console
|
|
{
|
|
internal class ConGroup
|
|
{
|
|
public int Index { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public List<string> Commands { get; set; }
|
|
|
|
// NOTE: When adding special permissions, do NOT forget to add it to MsgConGroupUpdate!!
|
|
public bool CanViewVar { get; set; }
|
|
public bool CanAdminPlace { get; set; }
|
|
public bool CanScript { get; set; }
|
|
}
|
|
}
|