Skip to content

Instantly share code, notes, and snippets.

@duhruh
Created December 21, 2017 00:01
Show Gist options
  • Save duhruh/6ed6e8ff0a3f9651c95aee877f8dd2e1 to your computer and use it in GitHub Desktop.
Save duhruh/6ed6e8ff0a3f9651c95aee877f8dd2e1 to your computer and use it in GitHub Desktop.
class MyEntitiy {
private foo;
private bar;
function MyEntity(foo, bar){
this.setFoo(foo);
this.setBar(bar);
}
function setFoo(foo){
this.foo = foo;
}
function setBar(bar){
this.bar = bar;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment