mirror of
https://github.com/maciejpedzich/racemash.git
synced 2025-04-05 00:01:11 +02:00
8 lines
157 B
TypeScript
8 lines
157 B
TypeScript
import { Models } from 'appwrite';
|
|
|
|
export interface PhotoAppearanceCount extends Models.Document {
|
|
voterId: string;
|
|
photoId: string;
|
|
count: number;
|
|
}
|