First version with PostgreSQL
[oweals/peertube.git] / client / src / app / admin / friends / shared / friend.model.ts
1 export interface Friend {
2   id: string;
3   host: string;
4   score: number;
5   createdAt: Date;
6 }