Feat[BE}: inisiate repport module

This commit is contained in:
aguhh18
2025-12-10 08:23:52 +07:00
parent d7c543bc9d
commit 576f8083a3
7 changed files with 345 additions and 0 deletions
@@ -0,0 +1,16 @@
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
}