16 lines
313 B
Go
16 lines
313 B
Go
package data
|
|
|
|
type AuthProvider struct {
|
|
ID int64 `json:"id"`
|
|
Description string `json:"description"`
|
|
Active bool `json:"active"`
|
|
}
|
|
|
|
type AuthProviderID int64
|
|
|
|
const (
|
|
ProviderUnknown AuthProviderID = 0
|
|
ProviderLocal AuthProviderID = 1
|
|
ProviderIDAustria AuthProviderID = 2
|
|
)
|