11 lines
150 B
Go
11 lines
150 B
Go
package models
|
|
|
|
// Funny you are
|
|
type ComUser struct {
|
|
Id string
|
|
Username string
|
|
Password string
|
|
Email string
|
|
IsVerified bool
|
|
}
|