TF-527 Add presentation layer in add new identity
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user