Initial commit
This commit is contained in:
commit
c0cb826917
63 changed files with 2069 additions and 0 deletions
13
internal/application/common/user_result.go
Normal file
13
internal/application/common/user_result.go
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
package common
|
||||
|
||||
import "github.com/google/uuid"
|
||||
|
||||
type UserResult struct {
|
||||
Id uuid.UUID
|
||||
UserName string
|
||||
Password string
|
||||
}
|
||||
|
||||
type UserResultList struct {
|
||||
Result []*UserResult
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue