mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-10 16:07:58 -06:00
15 lines
381 B
Dart
15 lines
381 B
Dart
import 'package:dio/dio.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:paperless_mobile/features/login/model/client_certificate.dart';
|
|
|
|
abstract interface class SessionManager implements ChangeNotifier {
|
|
Dio get client;
|
|
|
|
void updateSettings({
|
|
String? baseUrl,
|
|
String? authToken,
|
|
ClientCertificate? clientCertificate,
|
|
});
|
|
void resetSettings();
|
|
}
|