/**
 * Entity definition for the Cart domain
 */

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

export type CartCreationData = Omit<CartEntity, 'id'>;
export type CartUpdateData = Partial<CartCreationData>;