Skip to content

Instantly share code, notes, and snippets.

@Killavus
Created April 25, 2015 17:14
Show Gist options
  • Save Killavus/09a74bd54d2fbdcc0e72 to your computer and use it in GitHub Desktop.
Save Killavus/09a74bd54d2fbdcc0e72 to your computer and use it in GitHub Desktop.
class DomainModel
constructor: (@id, @name, ... rest of arguments) ->
@fromJSON: (json) ->
new DomainModel(json.id, json.name, ... rest of arguments)
# put your domain logic here.
module.exports = DomainModel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment