20 lines
336 B
Swift
20 lines
336 B
Swift
//
|
|
// Muscle.swift
|
|
// Werkout_ios
|
|
//
|
|
// Created by Trey Tartt on 6/15/23.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct Muscle: Codable {
|
|
let id: Int
|
|
let name, createdAt, updatedAt: String
|
|
|
|
enum CodingKeys: String, CodingKey {
|
|
case id, name
|
|
case createdAt = "created_at"
|
|
case updatedAt = "updated_at"
|
|
}
|
|
}
|