mirror of
https://github.com/dscyrescotti/Memola.git
synced 2026-03-28 12:12:00 +01:00
19 lines
393 B
Swift
19 lines
393 B
Swift
//
|
|
// ElementObject.swift
|
|
// Memola
|
|
//
|
|
// Created by Dscyre Scotti on 6/12/24.
|
|
//
|
|
|
|
import CoreData
|
|
import Foundation
|
|
|
|
@objc(ElementObject)
|
|
final class ElementObject: NSManagedObject {
|
|
@NSManaged var type: Int16
|
|
@NSManaged var createdAt: Date?
|
|
@NSManaged var photo: PhotoObject?
|
|
@NSManaged var stroke: StrokeObject?
|
|
@NSManaged var graphicContext: GraphicContextObject?
|
|
}
|