-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feat] #473 - home/employment 네트워크 레이어 구현
- Loading branch information
1 parent
30d4b30
commit 0dc4e01
Showing
3 changed files
with
28 additions
and
2 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
18 changes: 18 additions & 0 deletions
18
SOPT-iOS/Projects/Modules/Networks/Sources/Entity/HomeEmploymentEntity.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,18 @@ | ||
// | ||
// HomeEmploymentEntity.swift | ||
// Networks | ||
// | ||
// Created by Jae Hyun Lee on 1/20/25. | ||
// Copyright © 2025 SOPT-iOS. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
|
||
// MARK: - HomeEmploymentEntity | ||
|
||
public struct HomeEmploymentEntity: Codable { | ||
public let id: Int | ||
public let categoryName, title, profileImage, name: String | ||
public let content: String | ||
public let images: [String] | ||
} |
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