mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-19 00:11:16 +00:00
12 lines
219 B
Go
12 lines
219 B
Go
package model
|
|
|
|
// Login represents a standard subset of user meta-data
|
|
// provided by OAuth login services.
|
|
type Login struct {
|
|
ID int64
|
|
Login string
|
|
Access string
|
|
Secret string
|
|
Name string
|
|
Email string
|
|
}
|