설정 페이지 추가
This commit is contained in:
19
SodaLive/Sources/Settings/Notice/GetNoticeResponse.swift
Normal file
19
SodaLive/Sources/Settings/Notice/GetNoticeResponse.swift
Normal file
@@ -0,0 +1,19 @@
|
||||
//
|
||||
// GetNoticeResponse.swift
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2023/08/10.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
struct GetNoticeResponse: Decodable {
|
||||
let totalCount: Int
|
||||
let noticeList: [NoticeItem]
|
||||
}
|
||||
|
||||
struct NoticeItem: Decodable, Hashable {
|
||||
let title: String
|
||||
let content: String
|
||||
let date: String
|
||||
}
|
Reference in New Issue
Block a user