mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-20 13:31:56 +00:00
17 lines
283 B
Go
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
|
|
}
|