using OF_DL.Entities; namespace OF_DL.Services { public interface IAuthService { Auth? CurrentAuth { get; set; } Task LoadFromFileAsync(string filePath = "auth.json"); Task LoadFromBrowserAsync(); Task SaveToFileAsync(string filePath = "auth.json"); } }