RenaiApp/src/main/entities/library/i-identifiable-entity.d.ts

11 lines
208 B
TypeScript

/**
* Every database entity should implement this one.
* It does nothing more but guarantee there is an id column.
*/
declare interface IIdentifiableEntity {
/**
* the entity id
*/
id: number;
}