2023-10-28 14:42:29 -04:00
|
|
|
package models
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
2023-10-28 18:29:57 -04:00
|
|
|
type CommonFields struct {
|
|
|
|
EntityType string `bson:"ent,omitempty"`
|
|
|
|
CreatedAt time.Time `bson:"created_at,omitempty"`
|
|
|
|
UpdatedAt time.Time `bson:"updated_at,omitempty"`
|
2023-10-28 14:42:29 -04:00
|
|
|
}
|