Files
sodalive-ios/SodaLive/Sources/MyPage/Can/GetCanResponse.swift
Yu Sung 81b01722ac feat(can-payment): 다국적 통화 표기 지원 및 결제 금액 표시 개선
- KRW 고정 표기에서 벗어나 PG/해외 결제 등 다양한 통화 표기를 정확히 지원하기 위함
2025-10-02 17:17:17 +09:00

19 lines
297 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
let currency: String
let priceStr: String
}