Files
gridpilot.gg/core/shared/domain/Entity.ts
2025-12-15 13:46:07 +01:00

3 lines
60 B
TypeScript

export interface IEntity<Id = string> {
readonly id: Id;
}