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