-
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
36 changed files
with
531 additions
and
98 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
12 changes: 12 additions & 0 deletions
12
SOPKATHON_33-iOS/SOPKATHON_33-iOS/Data/Main/GelationModel.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,12 @@ | ||
// | ||
// GelationModel.swift | ||
// SOPKATHON_33-iOS | ||
// | ||
// Created by 류희재 on 2023/11/26. | ||
// | ||
|
||
import Foundation | ||
|
||
struct GelationModel: Codable { | ||
let volunteers, programs, certifications: [String] | ||
} |
23 changes: 23 additions & 0 deletions
23
SOPKATHON_33-iOS/SOPKATHON_33-iOS/Data/Main/ProgramModel.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,23 @@ | ||
// | ||
// ProgramModel.swift | ||
// SOPKATHON_33-iOS | ||
// | ||
// Created by 류희재 on 2023/11/26. | ||
// | ||
|
||
import Foundation | ||
|
||
// MARK: - Datum | ||
struct ProgramModel: Codable { | ||
let programID: Int | ||
let title, registerAt, imageURL, status: String | ||
let region: String | ||
|
||
enum CodingKeys: String, CodingKey { | ||
case programID = "program_id" | ||
case title | ||
case registerAt = "register_at" | ||
case imageURL = "image_url" | ||
case status, region | ||
} | ||
} |
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
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
Oops, something went wrong.