mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-10-31 22:17:29 +00:00
26 lines
561 B
Dart
26 lines
561 B
Dart
// import 'package:equatable/equatable.dart';
|
|
// import 'package:selfprivacy/logic/models/state_types.dart';
|
|
|
|
// enum ServiceTypes {
|
|
// messanger,
|
|
// mail,
|
|
// passwordManager,
|
|
// github,
|
|
// cloud,
|
|
// }
|
|
|
|
// class Service extends Equatable {
|
|
// const Service({required this.state, required this.type});
|
|
|
|
// final StateType state;
|
|
// final ServiceTypes type;
|
|
|
|
// Service updateState(StateType newState) => Service(
|
|
// state: newState,
|
|
// type: type,
|
|
// );
|
|
|
|
// @override
|
|
// List<Object?> get props => [state, type];
|
|
// }
|