13 lines
184 B
Go
13 lines
184 B
Go
package common
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type UserResult struct {
|
|
Id uuid.UUID
|
|
UserName string
|
|
Password string
|
|
}
|
|
|
|
type UserResultList struct {
|
|
Result []*UserResult
|
|
}
|