Perfect-CRUD icon indicating copy to clipboard operation
Perfect-CRUD copied to clipboard

Subclass mapping

Open heyzooi opened this issue 7 years ago • 0 comments

It enables models like

class Animal: Codable {
    var entityId: String? // primary key
    var name: String?
}
class Dog: Animal {
    var breed: String?
}

heyzooi avatar Dec 04 '18 05:12 heyzooi