using VideoConcat.Common.Tools; namespace VideoConcat.Common.Api.Base { public class SystemApi { public static async Task> LoginAsync(string username, string password) { HttpHelper Http = new(); ApiResponse res = await Http.PostAsync("/api/base/login", new { Username = username, Password = password, Platform = "pc" }); return res; } } }