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