mirror of
https://github.com/mastodon/mastodon-ios.git
synced 2024-12-08 22:56:41 +01:00
14 lines
235 B
Swift
14 lines
235 B
Swift
//
|
|
// CustomEmojiPickerSection.swift
|
|
// Mastodon
|
|
//
|
|
// Created by MainasuK Cirno on 2021-3-24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public enum CustomEmojiPickerSection: Equatable, Hashable {
|
|
case uncategorized
|
|
case emoji(name: String)
|
|
}
|