Old and new mogenerator output snippets.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DO NOT EDIT. This file is machine-generated and constantly overwritten. | |
// Make changes to Category.swift instead. | |
import CoreData | |
@objc public | |
class _Category: NSManagedObject { | |
public struct Attributes { | |
static let displayName = "displayName" | |
static let id = "id" | |
} | |
public struct Relationships { | |
static let filters = "filters" | |
} | |
// MARK: - Class methods | |
public class func entityName () -> String { | |
return "Category" | |
} | |
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DO NOT EDIT. This file is machine-generated and constantly overwritten. | |
// Make changes to Category.swift instead. | |
import CoreData | |
public enum CategoryAttributes: String { | |
case displayName = "displayName" | |
case id = "id" | |
} | |
public enum CategoryRelationships: String { | |
case filters = "filters" | |
} | |
@objc public | |
class _Category: NSManagedObject { | |
// MARK: - Class methods | |
public class func entityName () -> String { | |
return "Category" | |
} | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment