Files
2025-09-26 09:10:22 +00:00

14 lines
293 B
Swift

import Foundation
public enum MessageStatus: String, CustomStringConvertible {
case draft = "draft"
case processing = "processing"
case scheduled = "scheduled"
case sent = "sent"
case failed = "failed"
public var description: String {
return rawValue
}
}