Files
opengifame/models/vote.ts
2022-10-08 01:04:52 +01:00

8 lines
127 B
TypeScript

export default interface VoteModel {
id: String;
isUp: boolean;
browserId: String;
createdAt: Date;
gifId: String;
}