mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-06-06 19:27:57 +00:00
18 lines
421 B
Swift
18 lines
421 B
Swift
import Foundation
|
|
|
|
public enum ImageGravity: String, Codable, CustomStringConvertible {
|
|
case center = "center"
|
|
case topLeft = "top-left"
|
|
case top = "top"
|
|
case topRight = "top-right"
|
|
case `left` = "left"
|
|
case `right` = "right"
|
|
case bottomLeft = "bottom-left"
|
|
case bottom = "bottom"
|
|
case bottomRight = "bottom-right"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|