mirror of
https://github.com/abhinavxd/libredesk.git
synced 2025-11-21 14:58:38 +00:00
10 lines
227 B
Go
10 lines
227 B
Go
package models
|
|
|
|
// User represents an authenticated user.
|
|
type User struct {
|
|
ID int `json:"id"`
|
|
FirstName string `json:"first_name"`
|
|
LastName string `json:"last_name"`
|
|
Email string `json:"email,omitempty"`
|
|
}
|