|
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
|
|
}
|