TF-816: get list email forward

This commit is contained in:
ManhNTX
2022-08-18 10:18:59 +07:00
committed by Dat H. Pham
parent 35eb29c1cf
commit c171f5fc24
26 changed files with 447 additions and 24 deletions
@@ -14,8 +14,8 @@ part 'get_forward_response.g.dart';
@AccountIdConverter()
@IdConverter()
@JsonSerializable()
class GetForwardResponse extends GetResponse<TmailForward> {
GetForwardResponse(AccountId accountId, State state, List<TmailForward> list, List<Id>? notFound) : super(accountId, state, list, notFound);
class GetForwardResponse extends GetResponse<TMailForward> {
GetForwardResponse(AccountId accountId, State state, List<TMailForward> list, List<Id>? notFound) : super(accountId, state, list, notFound);
factory GetForwardResponse.fromJson(Map<String, dynamic> json) => _$GetForwardResponseFromJson(json);