mirror of
https://github.com/kataras/iris.git
synced 2025-02-10 02:56:20 +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
|
|
}
|