Swiftgram/Display/Theme.swift
2016-07-06 15:40:10 +03:00

10 lines
160 B
Swift

import Foundation
public class Theme {
public let tintColor: UIColor
public init(tintColor: UIColor) {
self.tintColor = tintColor
}
}