Backend/internal/application/common/user_result.go
2025-09-16 13:26:27 +04:00

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
}