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
|
|
}
|