mirror of
https://github.com/dscyrescotti/Memola.git
synced 2026-06-10 00:22:44 +02:00
16 lines
299 B
Swift
16 lines
299 B
Swift
//
|
|
// GraphicContextObject.swift
|
|
// Memola
|
|
//
|
|
// Created by Dscyre Scotti on 5/11/24.
|
|
//
|
|
|
|
import CoreData
|
|
import Foundation
|
|
|
|
@objc(GraphicContextObject)
|
|
final class GraphicContextObject: NSManagedObject {
|
|
@NSManaged var canvas: CanvasObject?
|
|
@NSManaged var strokes: NSMutableOrderedSet
|
|
}
|