mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
19 lines
372 B
Swift
19 lines
372 B
Swift
//
|
|
// ODBObject.swift
|
|
// RSDatabase
|
|
//
|
|
// Created by Brent Simmons on 4/24/18.
|
|
// Copyright © 2018 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public typealias ODBDictionary = [String: ODBObject]
|
|
|
|
// ODBTable and ODBValueObject conform to ODBObject.
|
|
|
|
public protocol ODBObject {
|
|
var name: String { get }
|
|
var parentTable: ODBTable? { get }
|
|
}
|