설정 페이지 추가

This commit is contained in:
Yu Sung
2023-08-10 22:05:14 +09:00
parent d06f4d6a36
commit dbeb15ba17
24 changed files with 1368 additions and 4 deletions

View 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
}