package video
type Video struct {
ID int `json:"id" gorm:"primaryKey"`
Title string `json:"title"`
Description string `json:"description"`
FileURL string `json:"file_url"`
}