Files
WerkoutIOS/Werkout_ios/APIModels/NSFWVideo.swift
Trey t 173f39cc5f WIP
2023-07-29 12:03:40 -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"
}
}