generated from VLADIMIR/template
14 lines
198 B
Go
14 lines
198 B
Go
package repos
|
|
|
|
import "time"
|
|
|
|
type User struct {
|
|
ID int
|
|
Username string
|
|
Email string
|
|
PasswordHash string
|
|
Roles []string
|
|
IsActive bool
|
|
CreatedAt time.Time
|
|
}
|