Files
lti-api/internal/modules/repports/dto/repport.dto.go
T
2025-12-10 08:23:52 +07:00

17 lines
283 B
Go

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
}