import { IQuestion } from '../../question';
export interface IHistory {
    createdAt: Date;
    updatedAt: Date;
    active: boolean;
    id: string;
    question: IQuestion | null;
}
