2021-05-11 22:53:23 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
type LibraryResource struct {
|
|
|
|
ID int `db:"id"`
|
|
|
|
|
2021-07-30 03:40:47 +00:00
|
|
|
ProjectID *int `db:"project_id"`
|
2021-05-11 22:53:23 +00:00
|
|
|
|
|
|
|
Name string `db:"name"`
|
|
|
|
Description string `db:"description"`
|
|
|
|
Url string `db:"url"`
|
|
|
|
ContentType string `db:"content_type"`
|
|
|
|
Size int `db:"size"`
|
|
|
|
IsDeleted bool `db:"is_deleted"`
|
|
|
|
PreventsEmbed bool `db:"prevents_embed"`
|
|
|
|
}
|