13 lines
330 B
Go
13 lines
330 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Language struct {
|
|
Id *int32 `db:"id"`
|
|
Name *string `db:"name"`
|
|
BuildFileHash *string `db:"build_file_hash"`
|
|
ExecuteFileHash *string `db:"execute_file_hash"`
|
|
CreatedAt *time.Time `db:"created_at"`
|
|
UpdatedAt *time.Time `db:"updated_at"`
|
|
}
|