8 lines
140 B
TypeScript
Raw Normal View History

export interface IActivity {
name: string;
date: string;
actorId: number;
actorName?: string;
actorPhotoUrl?: string;
}