mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-04-24 12:44:07 +00:00
13 lines
233 B
Go
13 lines
233 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
|
|
Expiry int64
|
|
}
|