2021-01-22 21:05:21 +00:00
|
|
|
/**
|
|
|
|
|
* type accepted by Tag component
|
|
|
|
|
*/
|
|
|
|
|
export interface TagType {
|
2021-03-14 14:51:53 +00:00
|
|
|
TagName: string;
|
|
|
|
|
TagId: number;
|
2021-01-22 21:05:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface ActorType {
|
2021-02-23 16:01:29 +00:00
|
|
|
Thumbnail: string;
|
|
|
|
|
Name: string;
|
|
|
|
|
ActorId: number;
|
2021-01-22 21:05:21 +00:00
|
|
|
}
|