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