IceCubesApp/Packages/Models/Sources/Models/Emoji.swift
2022-12-21 17:39:48 +01:00

18 lines
327 B
Swift

import Foundation
public struct Emoji: Codable, Hashable, Identifiable {
public func hash(into hasher: inout Hasher) {
hasher.combine(shortcode)
}
public var id: String {
shortcode
}
public let shortcode: String
public let url: URL
public let staticUrl: URL
public let visibleInPicker: Bool
}