7 lines
114 B
TypeScript
7 lines
114 B
TypeScript
|
export interface IActorInformation {
|
||
|
id: number;
|
||
|
name: string;
|
||
|
email: string;
|
||
|
photoUrl: string;
|
||
|
}
|