13 lines
287 B
C#
13 lines
287 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|