Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 297 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 297 Bytes

Horn

Models as Object inspired in Django data models

This is very easy to use, just create your models and start insteracting with them. This libriray is optimized for Swift 3 and Swift 4

let user = User.create()
user.name = "Sebastian"
user.lastname = "Romero"
_ = user.save()