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

4 lines
112 B
TypeScript

export interface IValueObject<Props> {
readonly props: Props;
equals(other: IValueObject<Props>): boolean;
}