aboutsummaryrefslogtreecommitdiff
path: root/db/model.go
blob: 309447221a083e086d32c36af7634043d5a3dc67 (plain)
1
2
3
4
5
6
7
8
9
10
11
package db

import "gorm.io/gorm"

type YdlEntry struct {
	gorm.Model
	Title         string
	Link          string
	Format        string
	Output_folder string
}