feat: friends

This commit is contained in:
dylanmay
2023-09-20 17:51:50 +08:00
parent e3f8a3a94b
commit 5b8b51a894
7 changed files with 169 additions and 7 deletions

View File

@ -0,0 +1,15 @@
export default class Friend {
public id: string
public avatar: string
public name: string
public description: string
public createTime: number
constructor(id, avatar, name, description, createTime) {
this.id = id
this.avatar = avatar
this.name = name
this.description = description
this.createTime = createTime
}
}