-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
85 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
SOPKATHON_33-iOS/SOPKATHON_33-iOS/Data/Main/DetailModel.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// | ||
// DetailModel.swift | ||
// SOPKATHON_33-iOS | ||
// | ||
// Created by 류희재 on 2023/11/26. | ||
// | ||
|
||
struct DetailModel: Codable { | ||
let imageURL, content, organizationName, registerAt: String | ||
let salary: Int? | ||
let hour: Int? | ||
let isApply: Bool | ||
let programType: String | ||
|
||
enum CodingKeys: String, CodingKey { | ||
case imageURL = "imageUrl" | ||
case content | ||
case organizationName | ||
case registerAt | ||
case salary | ||
case hour | ||
case isApply | ||
case programType | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters