export interface ISuspension {
    reason: string | null;
    startDate: Date;
    endDate: Date | null;
}
