OpenMediaCenter/src/types/VideoTypes.ts
2021-03-14 14:51:53 +00:00

14 lines
205 B
TypeScript

/**
* type accepted by Tag component
*/
export interface TagType {
TagName: string;
TagId: number;
}
export interface ActorType {
Thumbnail: string;
Name: string;
ActorId: number;
}