|
//
|
|
// KViewOrientationStyle.swift
|
|
// Kuru Example
|
|
//
|
|
// Created by Alejandro Zalazar on 18/04/2022.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum KViewOrientationStyle: String, Codable {
|
|
case horizontal = "horizontal"
|
|
case vertical = "vertical"
|
|
case absolute = "absolute"
|
|
}
|