codeword/internal/models/discount.go

13 lines
298 B
Go
Raw Normal View History

2024-03-03 20:18:42 +00:00
package models
type Discount struct {
/* - Цель скидки*/
Target string `json:"target"`
/* - Порог скидки*/
Threshold int `json:"threshold"`
/* - Множитель скидки*/
Factor int `json:"factor"`
2024-11-15 11:21:04 +00:00
/* - Уровень скидки*/
Layer int `json:"layer"`
2024-03-03 20:18:42 +00:00
}