You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
360 B

import { MemberItem } from '~/domain/models/member/member'
export class MemberDTO {
id: number;
user: number;
role: number;
username: string;
rolename: string;
constructor(item: MemberItem) {
this.id = item.id;
this.user = item.user;
this.role = item.role;
this.username = item.username;
this.rolename = item.rolename;
}
}