mirror of
https://github.com/fergalmoran/opengifame.git
synced 2026-01-06 17:04:49 +00:00
8 lines
127 B
TypeScript
8 lines
127 B
TypeScript
export default interface VoteModel {
|
|
id: String;
|
|
isUp: boolean;
|
|
browserId: String;
|
|
createdAt: Date;
|
|
gifId: String;
|
|
}
|