CTZLauncher/CTZLauncher/CTZAuth/ICTZAuth.cs

20 lines
355 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CTZLauncher.CTZAuth
{
interface ICTZAuth
{
bool isRegister(string username);
bool Register(string username, string password);
bool isLogin(string username);
bool Login(string username, string password);
}
}