mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-06-06 19:27:57 +00:00
11 lines
211 B
Swift
11 lines
211 B
Swift
import Foundation
|
|
|
|
public enum MessagePriority: String, Codable, CustomStringConvertible {
|
|
case normal = "normal"
|
|
case high = "high"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|