racemash/src/models/photoAppearanceCount.ts

8 lines
157 B
TypeScript

import { Models } from 'appwrite';
export interface PhotoAppearanceCount extends Models.Document {
voterId: string;
photoId: string;
count: number;
}