lib/app/applog.go

19 lines
374 B
Go
Raw Permalink Normal View History

2021-01-14 06:36:35 +00:00
package app
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
}