metatext/Mastodon/Sources/Mastodon/Entities/Emoji.swift
2021-03-28 23:04:14 -07:00

12 lines
288 B
Swift

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