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