package single type Createdto struct { Code string `json:"code"` Name string `json:"name"` Description string `json:"description"` } type ReadListDto struct { Code string `json:"code"` Name string `json:"name"` } type ReadDetailDto struct { Code string `json:"code"` Name string `json:"name"` } type Updatedto struct { Id uint `json:"id"` Createdto } type Deletedto struct { Id uint `json:"id"` }