Ferrite/Ferrite/Models/GithubModels.swift
kingbri 06d4f8e84e RealDebrid, Github: Reorganize models
Prep for more debrid services

Signed-off-by: kingbri <bdashore3@proton.me>
2022-11-25 14:49:24 -05:00

20 lines
377 B
Swift

//
// GithubModels.swift
// Ferrite
//
// Created by Brian Dashore on 8/28/22.
//
import Foundation
extension Github {
public struct Release: Codable, Hashable, Sendable {
let htmlUrl: String
let tagName: String
enum CodingKeys: String, CodingKey {
case htmlUrl = "html_url"
case tagName = "tag_name"
}
}
}