19 lines
358 B
Go
19 lines
358 B
Go
|
package app
|
||
|
|
||
|
import (
|
||
|
"database/sql"
|
||
|
)
|
||
|
|
||
|
// TaskWhoRelation is a first class object type
|
||
|
type TaskWhoRelation struct {
|
||
|
AccountID string
|
||
|
CreatedByID string
|
||
|
CreatedDate sql.NullTime
|
||
|
ID string
|
||
|
LastModifiedByID string
|
||
|
LastModifiedDate sql.NullTime
|
||
|
RelationID string
|
||
|
TaskID string
|
||
|
Type string
|
||
|
}
|