17 lines
331 B
Go
17 lines
331 B
Go
|
package app
|
||
|
|
||
|
import "database/sql"
|
||
|
|
||
|
// Role is a first class object type
|
||
|
type Role struct {
|
||
|
ID string
|
||
|
Auth0RoleID string
|
||
|
CreatedByID string
|
||
|
CreatedDate sql.NullTime
|
||
|
Description string
|
||
|
LastModifiedByID string
|
||
|
LastModifiedDate sql.NullTime
|
||
|
RoleName string
|
||
|
TenantID string
|
||
|
}
|