metatext/Mastodon/Sources/Mastodon/Entities/List.swift
Justin Mazzocchi cf342bf3ae
Renaming
2020-09-25 20:28:50 -07:00

14 lines
285 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
public struct List: Codable, Hashable, Identifiable {
public let id: String
public let title: String
public init(id: String, title: String) {
self.id = id
self.title = title
}
}