package dto import "time" // === DTO Structs === type RepportListDTO struct { Id uint `json:"id"` Name string `json:"name"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` } type RepportDetailDTO struct { RepportListDTO }