Newer
Older
Qwilight / Qwilight / System / TelnetSystem / IHandleTelnet.cs
@Taehui Taehui on 14 Nov 202 bytes 2023-11-15 오전 12:09
namespace Qwilight
{
    public interface IHandleTelnet
    {
        public bool IsAvailable { get; set; }

        public bool IsAlwaysNewStand { get; set; }

        public void Toggle();
    }
}