20 lines
418 B
Go
20 lines
418 B
Go
package app
|
|
|
|
import "code.tnxs.net/taxnexus/lib/api/ops/ops_models"
|
|
|
|
// TotalTaxItemChannelWrapper wraps the object with workflow params
|
|
type TotalTaxItemChannelWrapper struct {
|
|
Obj ops_models.TotalTaxItem
|
|
APIKey string
|
|
SagaID string
|
|
SagaType string
|
|
}
|
|
|
|
// TotalTaxItem is a DB struct
|
|
type TotalTaxItem struct {
|
|
ID string
|
|
TotalItem string
|
|
TaxTransaction string
|
|
TenantID string
|
|
}
|