13 lines
212 B
Swift
13 lines
212 B
Swift
|
//
|
||
|
// CustomEmojiPickerSection.swift
|
||
|
// Mastodon
|
||
|
//
|
||
|
// Created by MainasuK Cirno on 2021-3-24.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
public enum CustomEmojiPickerSection: Equatable, Hashable {
|
||
|
case emoji(name: String)
|
||
|
}
|