라이브 메뉴 설정 페이지 추가

This commit is contained in:
Yu Sung
2024-10-08 18:40:18 +09:00
parent 8f6bd8fabe
commit 8cc6606348
6 changed files with 298 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
//
// UpdateLiveMenuRequest.swift
// SodaLive
//
// Created by klaus on 10/8/24.
//
struct UpdateLiveMenuRequest: Encodable {
let id: Int
let menu: String
let isActive: Bool = false
}