Created
August 19, 2012 19:01
-
-
Save brian428/3397066 to your computer and use it in GitHub Desktop.
Todo.coffee
This file contains hidden or 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
Ext.define( "ExtCoffeeTodo.model.Todo", | |
extend: "Ext.data.Model" | |
# Models can encapsulate business logic, | |
# handle data conversion, etc. | |
fields: [ | |
name: "id" | |
, | |
name: "description" | |
type: "string" | |
, | |
name: "complete" | |
type: "boolean" | |
, | |
name: "dateCreated" | |
type: "date" | |
, | |
name: "lastUpdated" | |
type: "date" | |
] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment