Files
PrivateCaptcha/pkg/common/backfillrequest.go
Taras Kushnir 4951055189 Initial commit
2025-05-31 10:56:00 +03:00

16 lines
211 B
Go

package common
import (
"strconv"
)
type BackfillRequest struct {
OrgID int32
UserID int32
PropertyID int32
}
func (br *BackfillRequest) Key() string {
return strconv.Itoa(int(br.PropertyID))
}