Kurdtvs-Live-Kurdish-TV-Kur.../Mastodon/Service/MastodonAttachmentService.s...

28 lines
521 B
Swift
Raw Normal View History

//
// MastodonAttachmentService.swift
// Mastodon
//
// Created by MainasuK Cirno on 2021-3-17.
//
import UIKit
import Combine
final class MastodonAttachmentService {
let identifier = UUID()
}
extension MastodonAttachmentService: Equatable, Hashable {
static func == (lhs: MastodonAttachmentService, rhs: MastodonAttachmentService) -> Bool {
return lhs.identifier == rhs.identifier
}
func hash(into hasher: inout Hasher) {
hasher.combine(identifier)
}
}