mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 19:21:03 +01:00
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
|
||
|
}
|