first commit, i i have no idea what i have done

This commit is contained in:
tdv
2025-08-31 22:42:08 +03:00
commit c5632f6a37
177 changed files with 9173 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package dto
type RecordDto struct {
ID uint `json:"id"`
StartedAt int64 `json:"startedAt"`
StoppedAt int64 `json:"stoppedAt"`
}
type RecordListDto struct {
Records []RecordDto `json:"records"`
Offset int `json:"offset"`
Limit int `json:"limit"`
Total int64 `json:"total"`
}