18 lines
375 B
Go
18 lines
375 B
Go
// i2_bot – Instinct PokememBro Bot
|
||
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
|
||
|
||
package dbmapping
|
||
|
||
import (
|
||
// stdlib
|
||
"time"
|
||
)
|
||
|
||
// Level is a struct, which represents `levels` table item in databse.
|
||
type Level struct {
|
||
ID int `db:"id"`
|
||
MaxExp int `db:"max_exp"`
|
||
MaxEgg int `db:"max_egg"`
|
||
CreatedAt time.Time `db:"created_at"`
|
||
}
|