Luski.Net/Luski.net/Server.Login.cs
JacobTech 2eb1abe526 init
2023-01-01 22:50:39 -05:00

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);
}
}