group.go 94 B

123456789
  1. package orm
  2. import "github.com/jinzhu/gorm"
  3. type Group struct {
  4. gorm.Model
  5. Name string
  6. }