14 lines
198 B
Swift
14 lines
198 B
Swift
//
|
|
// GetCanStatusResponse.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 2023/08/11.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct GetCanStatusResponse: Decodable {
|
|
let chargeCan: Int
|
|
let rewardCan: Int
|
|
}
|