All checks were successful
Build / build (push) Successful in 3m11s
17 lines
242 B
Go
17 lines
242 B
Go
package main
|
|
|
|
type VideoInfoVM struct {
|
|
ID int
|
|
PreviousID int
|
|
Title string
|
|
Description string
|
|
Thumbnail string
|
|
IsWatched bool
|
|
}
|
|
|
|
type VideoPlayerVM struct {
|
|
ID int
|
|
Title string
|
|
Description string
|
|
}
|