export type EntityAuditEntityChoice = {
  name: string;
  value: string;
};

export type EntityAuditEvent = {
  id: number;
  entityId: any;
  entityType: string;
  action: string;
  entityValue?: string;
  commitVersion?: number;
  modifiedBy?: string;
  modifiedDate: Date;
};
