Skip to content

Commit

Permalink
feat: Response(#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
sozohoy committed Feb 8, 2024
1 parent f3dddcc commit b7ef101
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,26 @@
//

import Foundation

extension DTO {
struct FetchEvaluatePostsResponse: Decodable {
/// κΈ€ ID
let id: Int
/// μˆ˜κ°• ν•™κΈ°
let selectedSemester: String
/// 총 평균
let totalAvg: Float
/// λ§Œμ‘±λ„
let satisfaction: Float
/// λ°°μ›€μ§€μˆ˜
let learning: Float
/// 쑰별λͺ¨μž„ 유무(μ—†μŒ == 0, 있음 == 1)
let team: Int
/// 학점 μž˜μ£ΌλŠ”κ°€?(잘쀌 == 0, 보톡 == 1, κΉŒλ‹€λ‘œμ›€ == 2)
let difficulty: Int
/// κ³Όμ œμ–‘(μ—†μŒ == 0, 보톡 == 1, 많음 == 2)
let homework: Int
/// μž‘μ„±κΈ€
let content: String
}
}

0 comments on commit b7ef101

Please sign in to comment.