Add Dart support

This commit is contained in:
Yissachar Radcliffe
2015-09-06 18:35:29 -04:00
parent ee1febcd95
commit e72a53448e
40 changed files with 2477 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
part of api;
@Entity()
class User {
int id = null;
String username = null;
String firstName = null;
String lastName = null;
String email = null;
String password = null;
String phone = null;
/* User Status */
int userStatus = null;
User();
@override
String toString() {
return 'User[id=$id, username=$username, firstName=$firstName, lastName=$lastName, email=$email, password=$password, phone=$phone, userStatus=$userStatus, ]';
}
}