metatext/Mastodon/Sources/Mastodon/Entities/Emoji.swift
2021-02-27 12:27:49 -08:00

12 lines
282 B
Swift

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