mirror of
https://github.com/ehrudxo/GoMap.git
synced 2025-07-14 08:09:43 +00:00
10 lines
194 B
Go
10 lines
194 B
Go
package models
|
|
|
|
type User struct {
|
|
Seq int64 //`gorm:"primary_key"`
|
|
Username string
|
|
Mail string
|
|
Password string
|
|
Description string
|
|
}
|