TF-4227 Add integration test on mobile for case display_view_with_all_email_with_tag_scenario
This commit is contained in:
@@ -1,13 +1,17 @@
|
||||
import 'package:labels/labels.dart';
|
||||
|
||||
class ProvisioningEmail {
|
||||
final String toEmail;
|
||||
final String subject;
|
||||
final String content;
|
||||
final List<String> attachmentPaths;
|
||||
final List<Label> labels;
|
||||
|
||||
ProvisioningEmail({
|
||||
required this.toEmail,
|
||||
required this.subject,
|
||||
required this.content,
|
||||
this.attachmentPaths = const [],
|
||||
this.labels = const [],
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import 'package:labels/model/label.dart';
|
||||
|
||||
class ProvisioningLabel {
|
||||
final String displayName;
|
||||
|
||||
ProvisioningLabel(this.displayName);
|
||||
|
||||
Label toLabel() => Label(displayName: displayName);
|
||||
}
|
||||
Reference in New Issue
Block a user