19 lines
376 B
Go
19 lines
376 B
Go
package types
|
|
|
|
import "database/sql"
|
|
|
|
// AppLog is a first class object type
|
|
type AppLog struct {
|
|
ID string
|
|
AccountID string
|
|
CompanyID string
|
|
CreatedByID string
|
|
CreatedDate sql.NullTime
|
|
Message string
|
|
ObjectType string
|
|
ObjectID string
|
|
Severity string
|
|
Source string
|
|
SourceTimestamp sql.NullTime
|
|
}
|