32 lines
734 B
Swift
32 lines
734 B
Swift
//
|
|
// TiletDescriptiveIconModel.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 1/11/23.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
public struct TiletDescriptiveIcon: Codable {
|
|
public var name: IconName = .multipleDocuments
|
|
public var size: IconSize = .medium
|
|
public var surface: Surface = .light
|
|
|
|
public init(name: IconName = .multipleDocuments, size: IconSize, surface: Surface) {
|
|
self.name = name
|
|
self.size = size
|
|
self.surface = surface
|
|
}
|
|
}
|
|
|
|
public struct TiletDirectionalIcon: Codable {
|
|
public var size: IconSize = .medium
|
|
public var surface: Surface = .light
|
|
|
|
public init(size: IconSize, surface: Surface) {
|
|
self.size = size
|
|
self.surface = surface
|
|
}
|
|
}
|