9 lines
162 B
Go
9 lines
162 B
Go
|
package model
|
||
|
|
||
|
type VideoItem struct {
|
||
|
Path string `json:"path"`
|
||
|
Start string `json:"start"`
|
||
|
End string `json:"end"`
|
||
|
ItemType string `json:"-"`
|
||
|
}
|