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