11 lines
332 B
Go
Raw Normal View History

2023-02-15 01:34:22 +05:30
package model
type PAT struct {
Id string `json:"id" db:"id"`
UserID string `json:"userId" db:"user_id"`
Token string `json:"token" db:"token"`
Name string `json:"name" db:"name"`
CreatedAt int64 `json:"createdAt" db:"created_at"`
2023-02-24 01:19:01 +05:30
ExpiresAt int64 `json:"expiresAt" db:"expires_at"` // unused as of now
2023-02-15 01:34:22 +05:30
}