mirror of
https://github.com/seerr-team/seerr.git
synced 2026-02-16 02:22:48 -05:00
Signed-off-by: 0xsysr3ll <0xsysr3ll@pm.me> Co-authored-by: fallenbagel <98979876+Fallenbagel@users.noreply.github.com> Co-authored-by: 0xsysr3ll <0xsysr3ll@pm.me> Co-authored-by: gauthier-th <mail@gauthierth.fr>
16 lines
386 B
TypeScript
16 lines
386 B
TypeScript
import type { User } from '@server/entity/User';
|
|
import type { PaginatedResponse } from '@server/interfaces/api/common';
|
|
|
|
export interface BlocklistItem {
|
|
tmdbId: number;
|
|
mediaType: 'movie' | 'tv';
|
|
title?: string;
|
|
createdAt?: Date;
|
|
user?: User;
|
|
blocklistedTags?: string;
|
|
}
|
|
|
|
export interface BlocklistResultsResponse extends PaginatedResponse {
|
|
results: BlocklistItem[];
|
|
}
|