ekangularbase
Version:
Authentication service for usermanagement(oidc client)
24 lines (19 loc) • 541 B
text/typescript
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[];
}