Files
receipt-wrangler-api/internal/models/group_member.go
2023-12-01 08:43:58 -05:00

12 lines
346 B
Go

package models
import "time"
type GroupMember struct {
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
UserID uint `gorm:"primaryKey;autoIncrement:false" json:"userId"`
GroupID uint `gorm:"primaryKey;autoIncrement:false" json:"groupId"`
GroupRole GroupRole `gorm:"not null" json:"groupRole"`
}