14 lines
172 B
Swift
14 lines
172 B
Swift
//
|
|
// Terms.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 2023/08/10.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct Terms: Decodable {
|
|
let title: String
|
|
let description: String
|
|
}
|