Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Catalog: slim item model #37

Open
adedw opened this issue Mar 8, 2023 · 0 comments
Open

Catalog: slim item model #37

adedw opened this issue Mar 8, 2023 · 0 comments
Assignees
Labels

Comments

@adedw
Copy link
Member

adedw commented Mar 8, 2023

Current item model

final case class Item(
uuid: ItemId,
name: ItemName,
description: ItemDescription,
price: Money,
brand: Brand,
category: Category
)

provides redundant fields for listing. I want to request something similar

type ListItem = {
  uuid: string;
  name: string;
  price: Money;
};

Anyway this might be used for detailed view, mentioned here #6 (comment)

@adedw adedw moved this to Backlog in Shopping cart (SC) Mar 8, 2023
@DenisNovac DenisNovac self-assigned this Mar 8, 2023
@adedw adedw changed the title Slim item model Catalog: slim item model Mar 11, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: Backlog
Development

No branches or pull requests

2 participants