This commit is contained in:
12
internal/dtos/response/wiki.go
Normal file
12
internal/dtos/response/wiki.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package response
|
||||
|
||||
import "time"
|
||||
|
||||
type WikiResponse struct {
|
||||
ID string `json:"id"`
|
||||
Title string `json:"title,omitempty"`
|
||||
Content string `json:"content,omitempty"`
|
||||
IsDeleted bool `json:"is_deleted,omitempty"`
|
||||
CreatedAt *time.Time `json:"created_at,omitempty"`
|
||||
UpdatedAt *time.Time `json:"updated_at,omitempty"`
|
||||
}
|
||||
Reference in New Issue
Block a user