using System.Collections.Generic; using TrueCraft.API.Networking; namespace TrueCraft.API { public interface IAccessConfiguration { IList Blacklist { get; } IList Whitelist { get; } IList Oplist { get; } } }