mvm_core_ui/MVMCoreUI/Models/Holder.swift
Pfeil, Scott Robert 4a1a196854 typos
2019-11-05 12:32:32 -05:00

17 lines
358 B
Swift

import Foundation
public protocol Holdable: Codable {
static var identifier: String { get set }
}
public protocol Holder: Codable {
associatedtype HoldableType = Holdable
static var codingKeyName: String { get }
var name: String { get set }
var object: HoldableType { get set }
init(name: String, object: HoldableType)
}