mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-04 16:03:13 +00:00
17 lines
429 B
Dart
17 lines
429 B
Dart
import 'package:selfprivacy/logic/models/hive/backups_credential.dart';
|
|
|
|
class InitializeRepositoryInput {
|
|
InitializeRepositoryInput({
|
|
required this.provider,
|
|
required this.locationId,
|
|
required this.locationName,
|
|
required this.login,
|
|
required this.password,
|
|
});
|
|
final BackupsProviderType provider;
|
|
final String locationId;
|
|
final String locationName;
|
|
final String login;
|
|
final String password;
|
|
}
|