Skip to content

Commit 837e57f

Browse files
committed
✨ [feat] UserReportListResponse 추가
1 parent 7cd5d17 commit 837e57f

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
//
2+
// UserReportListResponse.swift
3+
// Core
4+
//
5+
// Created by 임영선 on 2023/02/16.
6+
// Copyright © 2023 Fitfty. All rights reserved.
7+
//
8+
9+
import Foundation
10+
11+
struct UserReportListResponse: Codable {
12+
let result: String
13+
let data: [UserReportListData]?
14+
let message, errorCode: String?
15+
}
16+
17+
struct UserReportListData: Codable {
18+
let reportToken, reportUserToken, reportUserEmail, reportedUserToken: String
19+
let reportedUserEmail: String
20+
let reportedCount: Int
21+
let type: [String]
22+
let isConfirmed: Bool
23+
}

0 commit comments

Comments
 (0)