mirror of
https://github.com/ChronosX88/yans.git
synced 2024-11-08 14:50:59 +00:00
11 lines
210 B
Go
11 lines
210 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Group struct {
|
|
ID int `db:"id"`
|
|
GroupName string `db:"group_name"`
|
|
Description *string `db:"description"`
|
|
CreatedAt time.Time `db:"created_at"`
|
|
}
|