19 lines
341 B
Swift
19 lines
341 B
Swift
//
|
|
// Modelable.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 8/5/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol Modelable: Surfaceable, Disabling, Initable, Withable, Identifiable, CustomDebugStringConvertible where ID == UUID {
|
|
|
|
}
|
|
|
|
extension Modelable {
|
|
public var debugDescription: String {
|
|
return "\(id.uuidString)"
|
|
}
|
|
}
|