17 lines
247 B
Swift
17 lines
247 B
Swift
//
|
|
// GetCanResponse.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 2023/08/11.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct GetCanResponse: Decodable, Hashable {
|
|
let id: Int
|
|
let title: String
|
|
let can: Int
|
|
let rewardCan: Int
|
|
let price: Int
|
|
}
|