mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 03:01:03 +01:00
8cd07719a6
Former-commit-id: 70f8619440497d132362da86c5187bcc57f8687b
16 lines
199 B
Go
16 lines
199 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// User is an example model.
|
|
type User struct {
|
|
ID int64
|
|
Username string
|
|
Firstname string
|
|
Lastname string
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|