Interface for data objects that can track their changes, including logical deletion.
Implements: IChangeable
Description
The ITrackagle interface allows you to define data objects that can track their changes, including logical deletion.
Fields
Examples
export class MyData implements IStringIdentifiable, ITrackable {
public id: string;
public field1: string;
public field2: number;
...
public change_time: Date;
public create_time: Date;
public deleted: boolean;
}