11 lines
303 B
Go
11 lines
303 B
Go
package domain
|
|
|
|
import "time"
|
|
|
|
type Variable struct {
|
|
Id int `db:"id" json:"id"`
|
|
Name string `db:"name" json:"name"`
|
|
Value string `db:"value" json:"value"`
|
|
CreatedAt time.Time `db:"created_at" json:"created_at"`
|
|
UpdatedAt time.Time `db:"updated_at" json:"updated_at"`
|
|
}
|