Files
WerkoutIOS/iphone/Werkout_ios/APIModels/NSFWVideo.swift
2024-06-18 12:03:56 -05:00

18 lines
304 B
Swift

//
// NSFWVideo.swift
// Werkout_ios
//
// Created by Trey Tartt on 7/29/23.
//
import Foundation
struct NSFWVideo: Codable {
let videoFile, genderValue: String
enum CodingKeys: String, CodingKey {
case videoFile = "video_file"
case genderValue = "gender_value"
}
}