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
class MyData implements IStringIdentifiable, ITrackable {
String id;
String field1;
int field2;
...
@override
DateTime change_time;
@override
DateTime create_time;
@override
bool deleted;
}