/**
 * Entity definition for the Product domain
 */

export interface ProductEntity {
  id: string;
  // Add your entity properties here
}

export type ProductCreationData = Omit<ProductEntity, 'id'>;
export type ProductUpdateData = Partial<ProductCreationData>;