21 lines
450 B
Swift
21 lines
450 B
Swift
//
|
|
// KAlignment.swift
|
|
// Kuru Example
|
|
//
|
|
// Created by Alejandro Zalazar on 18/04/2022.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public enum KAlignment: String, Codable {
|
|
case topLeading = "topLeading"
|
|
case top = "top"
|
|
case topTrailing = "topTrailing"
|
|
case leading = "leading"
|
|
case center = "center"
|
|
case trailing = "trailing"
|
|
case bottomLeading = "bottomLeading"
|
|
case bottom = "bottom"
|
|
case bottomTrailing = "bottomTrailing"
|
|
}
|