aboutsummaryrefslogtreecommitdiff
path: root/db/model.go
blob: 6f35cd0ac9fd2b4f496ba5ab26b167342ee23951 (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
	OutputFolder string
}