lib/types/filingscheduleitem.go

16 lines
342 B
Go

package types
import "database/sql"
// FilingScheduleItem is a first class object type
type FilingScheduleItem struct {
ID string
CreatedByID string
CreatedDate sql.NullTime
FilingTypeID string
Description string
DueDate sql.NullTime
LastModifiedByID string
LastModifiedDate sql.NullTime
}