metatext/DB/Sources/DB/Content/CompositionRecord.swift
2020-12-09 19:29:29 -08:00

10 lines
208 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
import GRDB
struct CompositionRecord: Codable, FetchableRecord, PersistableRecord {
let id: Composition.Id
let text: String
}