Refactoring

This commit is contained in:
Piotr Biernat
2024-12-06 16:44:42 +01:00
parent 2cf4d4c25d
commit 5a5f643be8
18 changed files with 62 additions and 66 deletions

View File

@@ -0,0 +1,9 @@
package pricing
type ProductPriceRequestDTO struct {
ProductId int `json:"product_id"`
}
type ProductPriceResponseDTO struct {
Price int `json:"price"`
}