UserSimple.ts 96 B

123456
  1. interface UserSimple {
  2. id?:string
  3. name: string
  4. avatar: string
  5. }
  6. export default UserSimple