Content
public struct Content : Codable
컨텐츠의 내용을 담고 있는 오브젝트 입니다. 1개의 이미지, 제목, 설명, 링크 정보를 가질 수 있습니다.
-
컨텐츠 제목
Declaration
Swift
public let title: String
-
이미지 URL
Declaration
Swift
public let imageUrl: URL
-
이미지 너비 (단위: 픽셀)
Declaration
Swift
public let imageWidth: Int?
-
이미지 높이 (단위: 픽셀)
Declaration
Swift
public let imageHeight: Int?
-
컨텐츠 상세 설명
Declaration
Swift
public let description: String?