forked from sim0n00ps/OF-DL
12 lines
281 B
C#
12 lines
281 B
C#
using OF_DL.Entities;
|
|
|
|
namespace OF_DL.Services;
|
|
|
|
public interface IAuthService
|
|
{
|
|
Auth? CurrentAuth { get; set; }
|
|
Task<bool> LoadFromFileAsync(string filePath = "auth.json");
|
|
Task<bool> LoadFromBrowserAsync();
|
|
Task SaveToFileAsync(string filePath = "auth.json");
|
|
}
|