Browse Source

Add user model

pull/1224/head
Hironsan 3 years ago
parent
commit
f62090237f
1 changed files with 22 additions and 0 deletions
  1. 22
      frontend/models/user.ts

22
frontend/models/user.ts

@ -0,0 +1,22 @@
export class UserItem {
constructor(
public id: number,
public username: string,
public is_superuser: boolean
) {}
static valueOf(
{ id, username, is_superuser }:
{ id: number, username: string, is_superuser: boolean }
): UserItem {
return new UserItem(id, username, is_superuser)
}
toObject(): Object {
return {
id: this.id,
username: this.username,
is_superuser: this.is_superuser
}
}
}
Loading…
Cancel
Save