IceCubesApp/Packages/Models/Sources/Models/Emoji.swift

17 lines
320 B
Swift
Raw Normal View History

2022-12-21 16:39:48 +00:00
import Foundation
public struct Emoji: Codable, Hashable, Identifiable {
public func hash(into hasher: inout Hasher) {
hasher.combine(shortcode)
}
2023-01-17 10:36:01 +00:00
2022-12-21 16:39:48 +00:00
public var id: String {
shortcode
}
2023-01-17 10:36:01 +00:00
2022-12-21 16:39:48 +00:00
public let shortcode: String
public let url: URL
public let staticUrl: URL
public let visibleInPicker: Bool
}