mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-15 21:10:59 +00:00
11 lines
206 B
Swift
11 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
|
||
|
}
|