14 lines
337 B
Go
14 lines
337 B
Go
![]() |
package model
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type TemplateGroup struct {
|
||
|
ID string `bson:"_id,omitempty" json:"id"`
|
||
|
UserID string `bson:"user_id" json:"user_id"`
|
||
|
Name string `bson:"name" json:"name"`
|
||
|
CreatedAt time.Time `bson:"created_at" json:"created_at"`
|
||
|
UpdatedAt time.Time `bson:"updated_at" json:"updated_at"`
|
||
|
}
|