user.ts 98 B

123456
  1. export interface User {
  2. id: number;
  3. label: string;
  4. avatarUrl: string;
  5. login: string;
  6. }