mirror of https://github.com/stashapp/stash.git
9 lines
289 B
Go
9 lines
289 B
Go
|
package models
|
||
|
|
||
|
type Tag struct {
|
||
|
ID int `db:"id" json:"id"`
|
||
|
Name string `db:"name" json:"name"` // TODO make schema not null
|
||
|
CreatedAt SQLiteTimestamp `db:"created_at" json:"created_at"`
|
||
|
UpdatedAt SQLiteTimestamp `db:"updated_at" json:"updated_at"`
|
||
|
}
|