Files
gridpilot.gg/packages/shared/domain/ValueObject.ts
2025-12-11 13:50:38 +01:00

4 lines
112 B
TypeScript

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