import { RequireInteractiveControl } from "ekangularbase/src/interface/Interactive Component/RequireInteractiveControl";

export class AuditTrailClass implements RequireInteractiveControl
{
    isLocked: boolean;
    id: string;
    seq: number;
    before: string;
    after: string;
    changeDate: Date;
    changeBy:string;

}

export class LogHasChangeById {
    hasChanges: boolean;
    id: string;
}

export class SpecifyLogHasChangeById {
    fieldsToCheck: string[];
    recordsToCheck: LogHasChangeById[];
}
