19 lines
352 B
Go
19 lines
352 B
Go
|
package types
|
||
|
|
||
|
import (
|
||
|
"database/sql"
|
||
|
)
|
||
|
|
||
|
// TaskRelation is a first class object type
|
||
|
type TaskRelation struct {
|
||
|
AccountID string
|
||
|
CreatedByID string
|
||
|
CreatedDate sql.NullTime
|
||
|
ID string
|
||
|
IsWhat bool
|
||
|
LastModifiedByID string
|
||
|
LastModifiedDate sql.NullTime
|
||
|
RelationID string
|
||
|
TaskID string
|
||
|
}
|