user.ts 103 B

123456
  1. export class User {
  2. username: string;
  3. password: string;
  4. fullname: string;
  5. id: number;
  6. }