mirror of
https://github.com/fergalmoran/opengifame.git
synced 2026-01-03 23:46:56 +00:00
9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
export interface Gif {
|
|
id: string;
|
|
title: string;
|
|
description: string;
|
|
fileName: string;
|
|
dateCreated: string;
|
|
upVotes: Number;
|
|
downVotes: Number;
|
|
} |