9 lines
201 B
Go
9 lines
201 B
Go
|
|
package video
|
||
|
|
|
||
|
|
type Video struct {
|
||
|
|
ID int `json:"id" gorm:"primaryKey"`
|
||
|
|
Title string `json:"title"`
|
||
|
|
Description string `json:"description"`
|
||
|
|
FileURL string `json:"file_url"`
|
||
|
|
}
|