TF-527 Add presentation layer in add new identity

This commit is contained in:
dab246
2022-05-05 09:10:32 +07:00
committed by Dat H. Pham
parent 32f99fcca2
commit 36e33b0866
19 changed files with 1030 additions and 57 deletions
@@ -0,0 +1,14 @@
import 'package:equatable/equatable.dart';
import 'package:jmap_dart_client/jmap/account_id.dart';
import 'package:model/model.dart';
class IdentityCreatorArguments with EquatableMixin {
final AccountId accountId;
final UserProfile userProfile;
IdentityCreatorArguments(this.accountId, this.userProfile);
@override
List<Object?> get props => [accountId, userProfile];
}
@@ -0,0 +1,5 @@
enum SignatureType {
plainText,
htmlTemplate
}