project_billing.go 206 B

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