streamin-be/app/module/video/entity.go

9 lines
201 B
Go
Raw Normal View History

2026-04-23 04:02:18 +00:00
package video
type Video struct {
ID int `json:"id" gorm:"primaryKey"`
Title string `json:"title"`
Description string `json:"description"`
FileURL string `json:"file_url"`
}