19 lines
409 B
Go
19 lines
409 B
Go
package app
|
|
|
|
import "database/sql"
|
|
|
|
// FilingTypeInstance is a first class object type
|
|
type FilingTypeInstance struct {
|
|
ID string
|
|
CountryID string
|
|
CountyID string
|
|
CreatedByID string
|
|
CreatedDate sql.NullTime
|
|
FilingTypeID string
|
|
LastModifiedByID string
|
|
LastModifiedDate sql.NullTime
|
|
ObjectType string
|
|
PlaceID string
|
|
StateID string
|
|
}
|