OpenMediaCenter/src/types/VideoTypes.ts
2021-02-23 16:01:29 +00:00

14 lines
203 B
TypeScript

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