anonymous-student
Version:
Anonymous student is used to retrieve and save information from our website users.
17 lines (12 loc) • 547 B
text/typescript
import { IEvent } from '@studyportals/event-aggregation-service-interface';
import { EventType } from '../enumerations/event-type';
import { StudentRepositoryStateType } from '../enumerations/student-repository-state-type';
export class AnonymousStudentProfileSynced implements IEvent {
public static EventType: string = EventType.AnonymousStudentProfileSynced;
public eventType: string = AnonymousStudentProfileSynced.EventType;
constructor(
public readonly timestamp: Date,
public readonly state: StudentRepositoryStateType
) {
}
}