mirror of
https://github.com/Ferrite-iOS/Ferrite.git
synced 2026-04-11 20:21:53 +00:00
20 lines
377 B
Swift
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"
|
|
}
|
|
}
|
|
}
|