mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
14 lines
155 B
Go
14 lines
155 B
Go
|
package models
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// UserGroup model
|
||
|
type UserGroup struct {
|
||
|
Id int64
|
||
|
OrgId int64
|
||
|
Name string
|
||
|
|
||
|
Created time.Time
|
||
|
Updated time.Time
|
||
|
}
|