2024-09-20 14:41:33 +00:00
|
|
|
package models
|
|
|
|
|
2024-09-26 08:19:51 +00:00
|
|
|
import "penahub.gitlab.yandexcloud.net/backend/quiz/common.git/model"
|
|
|
|
|
2024-09-20 14:41:33 +00:00
|
|
|
type Category struct {
|
2024-09-26 08:19:51 +00:00
|
|
|
ID int64 `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Sort int64 `json:"sort"`
|
|
|
|
EntityTypeId model.IntegerEntityType `json:"entityTypeId"`
|
|
|
|
IsDefault model.BitrixIsDefault `json:"isDefault"`
|
2024-09-20 14:41:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type CategoryResponse struct {
|
2024-09-22 09:30:02 +00:00
|
|
|
Result struct {
|
|
|
|
Categories []Category `json:"categories"`
|
|
|
|
} `json:"result"`
|
2024-09-20 14:41:33 +00:00
|
|
|
}
|