13 lines
287 B
C#
Executable File
13 lines
287 B
C#
Executable File
using Luski.net.Enums;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Luski.net;
|
|
|
|
public sealed partial class Server
|
|
{
|
|
public static async Task<Server> Login(string Email, string Password, Branch branch = Branch.Master)
|
|
{
|
|
return new Server(Email, Password, branch);
|
|
}
|
|
}
|