punchnet-macos/punchnet/Shared/Models/AppPoliciesInfo.swift
2026-04-17 15:18:08 +08:00

22 lines
541 B
Swift

//
// AppPoliciesInfo.swift
// punchnet
//
// Created by on 2026/4/17.
//
import Foundation
struct AppPoliciesInfo: Codable {
let privacyPolicyUrl: String
let termsOfServiceUrl: String
let privacyPolicyVersion: String
let termsVersion: String
enum CodingKeys: String, CodingKey {
case privacyPolicyUrl = "privacy_policy_url"
case termsOfServiceUrl = "terms_of_service_url"
case privacyPolicyVersion = "privacy_policy_version"
case termsVersion = "terms_version"
}
}