mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-09 14:34:58 +00:00
7 lines
114 B
TypeScript
7 lines
114 B
TypeScript
|
export interface IActorInformation {
|
||
|
id: number;
|
||
|
name: string;
|
||
|
email: string;
|
||
|
photoUrl: string;
|
||
|
}
|