project_billing.go 192 B

12345678910111213
  1. // +build ee
  2. package models
  3. import "gorm.io/gorm"
  4. // ProjectBilling stores a billing data per project
  5. type ProjectBilling struct {
  6. *gorm.Model
  7. ProjectID uint
  8. BillingTeamID string
  9. }