metatext/ViewModels/Sources/ViewModels/EmojiPickerViewModel.swift
Justin Mazzocchi def0e3fff0
wip
2021-01-14 09:49:53 -08:00

13 lines
300 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Combine
import Foundation
final public class EmojiPickerViewModel: ObservableObject {
private let identification: Identification
public init(identification: Identification) {
self.identification = identification
}
}