20 lines
278 B
Go
20 lines
278 B
Go
package common
|
|
|
|
type Task struct {
|
|
MerchUuid string
|
|
Origins map[string]string
|
|
}
|
|
|
|
type Result struct {
|
|
MerchUuid string
|
|
OriginName string
|
|
Price int32
|
|
}
|
|
|
|
type PersonalDTO struct {
|
|
Uuid string
|
|
Email string
|
|
Username string
|
|
Name string
|
|
Surname string
|
|
}
|