merch-api/pkg/authReg/struct.go

16 lines
236 B
Go
Raw Normal View History

2026-03-20 13:44:37 +03:00
package authReg
type RegRequest struct {
Name string
Description string
BaseCode int
EndCode int
SecretHash string
Status string
}
type RegResponse struct {
ServiceId int32
AlreadyRegistered bool
}