13 lines
212 B
Swift
13 lines
212 B
Swift
//
|
|
// GetPointUseStatusResponse.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 5/20/25.
|
|
//
|
|
|
|
struct GetPointUseStatusResponse: Decodable, Hashable {
|
|
let title: String
|
|
let date: String
|
|
let point: Int
|
|
}
|