TF-4186 Add datasource/repository for save and get company server login info

This commit is contained in:
dab246
2025-12-03 11:16:39 +07:00
committed by Dat H. Pham
parent 860154acc1
commit 0bbcfd0f75
11 changed files with 202 additions and 0 deletions
@@ -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];
}