-
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
1 parent
9b33e13
commit 28678a3
Showing
2 changed files
with
37 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// | ||
// Movie.swift | ||
// Tving-Clone | ||
// | ||
// Created by Seonwoo Kim on 6/7/24. | ||
// | ||
|
||
import Foundation | ||
|
||
struct Content { | ||
let data: [ContentData] | ||
} | ||
|
||
struct ContentData { | ||
let image: String | ||
var title: String | ||
var maker: String | ||
var subTitle: String | ||
var ratio: String | ||
} |
17 changes: 17 additions & 0 deletions
17
Tving-Clone/Tving-Clone/Domain/Entities/ContentDetail.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,17 @@ | ||
// | ||
// MovieDetail.swift | ||
// Tving-Clone | ||
// | ||
// Created by Seonwoo Kim on 6/7/24. | ||
// | ||
|
||
import Foundation | ||
|
||
struct ContentDetail { | ||
var title: String | ||
var openDt: String | ||
var directors: String | ||
var actors: String | ||
var audits: String | ||
var companys: String | ||
} |