anonymous-student
Version:
Anonymous student is used to retrieve and save information from our website users.
18 lines (13 loc) • 651 B
text/typescript
import { IEvent } from '@studyportals/event-aggregation-service-interface';
import { IAnonymousStudentService } from '../application';
import { EventType } from '../enumerations';
export class AnonymousStudentServiceReady implements IEvent {
public static EventType: string = EventType.AnonymousStudentServiceReady;
public eventType: string = AnonymousStudentServiceReady.EventType;
public readonly timestamp: Date;
public readonly anonymousStudentService: IAnonymousStudentService;
constructor(anonymousStudentService: IAnonymousStudentService) {
this.timestamp = new Date();
this.anonymousStudentService = anonymousStudentService;
}
}