github.com/resonatecoop/user-api@v1.0.0-13.0.20220915120639-05dc9c04014a/model/membership_class.go (about)

     1  package model
     2  
     3  // MembershipClass
     4  type MembershipClass struct {
     5  	IDRecord
     6  	Name      string `bun:",notnull"`
     7  	ProductID string `bun:",notnull"`
     8  	PriceID   string `bun:",notnull"`
     9  }