metatext/Mastodon/Sources/Mastodon/Entities/Emoji.swift
Justin Mazzocchi def0e3fff0
wip
2021-01-14 09:49:53 -08:00

12 lines
274 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
public struct Emoji: Codable, Hashable {
public let shortcode: String
public let staticUrl: URL
public let url: URL
public let visibleInPicker: Bool
public let category: String?
}