party/internal/data/auth_provider.go
2026-04-08 07:51:15 +02:00

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
)