mirror of
https://github.com/go-gitea/gitea.git
synced 2025-07-23 05:31:11 +02:00
14 lines
386 B
Go
14 lines
386 B
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package structs
|
|
|
|
type AuthSourceOption struct {
|
|
ID int64 `json:"id"`
|
|
AuthenticationName string `json:"authentication_name" binding:"Required"`
|
|
TypeName string `json:"type_name"`
|
|
|
|
IsActive bool `json:"is_active"`
|
|
IsSyncEnabled bool `json:"is_sync_enabled"`
|
|
}
|