TF-4186 Add datasource/repository for save and get company server login info
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
class CompanyServerLoginInfo with EquatableMixin {
|
||||
final String email;
|
||||
|
||||
const CompanyServerLoginInfo({
|
||||
required this.email,
|
||||
});
|
||||
|
||||
@override
|
||||
List<Object> get props => [email];
|
||||
}
|
||||
Reference in New Issue
Block a user