16 lines
322 B
Go
16 lines
322 B
Go
|
package app
|
||
|
|
||
|
import "database/sql"
|
||
|
|
||
|
// 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
|
||
|
}
|