mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-01-15 13:43:43 +01:00
20 lines
319 B
Swift
20 lines
319 B
Swift
//
|
|
// From.swift
|
|
// HardcoreData
|
|
//
|
|
// Created by John Rommel Estropia on 2015/03/21.
|
|
// Copyright (c) 2015 John Rommel Estropia. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import CoreData
|
|
|
|
|
|
// MARK: - From
|
|
|
|
public struct From<T: NSManagedObject> {
|
|
|
|
public init(){ }
|
|
public init(_ entity: T.Type) { }
|
|
}
|