14 lines
307 B
Go
14 lines
307 B
Go
package dto
|
|
|
|
import "time"
|
|
|
|
type File struct {
|
|
BasePath string `json:"basePath"`
|
|
Url string `json:"url"`
|
|
Path string `json:"path"`
|
|
Name string `json:"name"`
|
|
DiffMs int64 `json:"diffMs"`
|
|
StartTime time.Time `json:"startTime"`
|
|
EndTime time.Time `json:"endTime"`
|
|
}
|