10 lines
92 B
Go
10 lines
92 B
Go
package db
|
|
|
|
type Media struct {
|
|
ID uint
|
|
|
|
Type string
|
|
URL string
|
|
Caption string
|
|
}
|