mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-15 13:01:26 +00:00
10 lines
206 B
Swift
10 lines
206 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
struct Emoji: Codable, Hashable {
|
|
let shortcode: String
|
|
let staticUrl: URL
|
|
let url: URL
|
|
let visibleInPicker: Bool
|
|
}
|