mirror of
https://github.com/Forceu/Gokapi.git
synced 2026-04-26 08:30:20 -05:00
10 lines
251 B
Go
10 lines
251 B
Go
package models
|
|
|
|
// ApiKey contains data of a single api key
|
|
type ApiKey struct {
|
|
Id string `json:"Id"`
|
|
FriendlyName string `json:"FriendlyName"`
|
|
LastUsed int64 `json:"LastUsed"`
|
|
LastUsedString string `json:"LastUsedString"`
|
|
}
|