aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/admin/friends/shared/friend.model.ts
blob: 462cc82ed7693c95008cf469278f7898c99e2e75 (plain) (blame)
1
2
3
4
5
6
export interface Friend {
  id: string;
  host: string;
  score: number;
  createdAt: Date;
}