feat: update error article category details

This commit is contained in:
hanif salafi 2025-01-20 11:48:33 +07:00
parent 64a91a1aef
commit cd825462f9
1 changed files with 7 additions and 7 deletions

View File

@ -3,10 +3,10 @@ package response
import "time"
type ArticleCategoryDetailsResponse struct {
ID uint `json:"id"`
ArticleId int `json:"article_id"`
CategoryId int `json:"category_id"`
IsActive bool `json:"is_active"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
ID uint `json:"id"`
ArticleId uint `json:"article_id"`
CategoryId int `json:"category_id"`
IsActive bool `json:"is_active"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}