mirror of https://github.com/oxen-io/session-ios
10 lines
172 B
Swift
10 lines
172 B
Swift
3 years ago
|
// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
public enum MessageInputTypes: Equatable {
|
||
|
case all
|
||
|
case textOnly
|
||
|
case none
|
||
|
}
|