This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
TrueCraft/TrueCraft.API/IAccessConfiguration.cs

27 lines
719 B
C#

using System.Collections.Generic;
using TrueCraft.API.Networking;
namespace TrueCraft.API
{
/// <summary>
/// Interface for objects providing server access configuration.
/// </summary>
public interface IAccessConfiguration
{
/// <summary>
/// Gets a list of blacklisted players for the configuration.
/// </summary>
IList<string> Blacklist { get; }
/// <summary>
/// Gets a list of whitelisted players for the configuration.
/// </summary>
IList<string> Whitelist { get; }
/// <summary>
/// Gets a list of opped players for the configuration.
/// </summary>
IList<string> Oplist { get; }
}
}