94909470af
(cherry picked from commit 9dc046a951e5198461178860c8ebe4bedff9062f)
19 lines
325 B
Dart
19 lines
325 B
Dart
|
|
import 'package:equatable/equatable.dart';
|
|
|
|
class EmailUnsubscribe with EquatableMixin {
|
|
|
|
final List<String> httpLinks;
|
|
final List<String> mailtoLinks;
|
|
|
|
EmailUnsubscribe({
|
|
required this.httpLinks,
|
|
required this.mailtoLinks
|
|
});
|
|
|
|
@override
|
|
List<Object?> get props => [
|
|
httpLinks,
|
|
mailtoLinks
|
|
];
|
|
} |