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