mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-04-07 19:17:48 +00:00
12 lines
218 B
Swift
12 lines
218 B
Swift
import Foundation
|
|
|
|
public enum SmtpEncryption: String, CustomStringConvertible {
|
|
case `none` = "none"
|
|
case ssl = "ssl"
|
|
case tls = "tls"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|