This commit is contained in:
Trey t
2023-07-29 12:03:40 -05:00
parent 1997abeff6
commit 173f39cc5f
7 changed files with 49 additions and 12 deletions

View File

@@ -0,0 +1,17 @@
//
// 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"
}
}