28 lines
579 B
Go
28 lines
579 B
Go
package app
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
"code.tnxs.net/taxnexus/lib/api/regs/regs_models"
|
|
)
|
|
|
|
// NotebookItemActivityWrapper wraps the object with workflow params
|
|
type NotebookItemActivityWrapper struct {
|
|
Obj regs_models.NotebookItem
|
|
APIKey string
|
|
SagaID string
|
|
SagaType string
|
|
}
|
|
|
|
// NotebookItem is a first class object type
|
|
type NotebookItem struct {
|
|
ID string
|
|
CreatedByID string
|
|
CreatedDate sql.NullTime
|
|
ItemName string
|
|
LastModifiedByID string
|
|
LastModifiedDate sql.NullTime
|
|
Title string
|
|
NotebookID string
|
|
}
|