mirror of
https://github.com/harness/drone.git
synced 2025-05-07 04:02:20 +08:00
14 lines
233 B
Go
14 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
|
|
}
|