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(IStringIdentifiable, ITrackable):
id = None
...
change_time = None
create_time = None
deleted = None