generated from legonzaur/webapp-dto
Initial commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
export class UserResponseDTO {
|
||||
constructor(partial: Partial<UserResponseDTO>) {
|
||||
this.id = partial.id;
|
||||
this.username = partial.username;
|
||||
this.avatar = partial.avatar;
|
||||
}
|
||||
id: string;
|
||||
|
||||
username: string;
|
||||
|
||||
avatar: string;
|
||||
}
|
||||
Reference in New Issue
Block a user