CTZLauncher/CTZLauncher/CTZAuth/ICTZAuth.cs

20 lines
419 B
C#

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