mirror of
https://github.com/PrivateCaptcha/PrivateCaptcha.git
synced 2026-02-09 07:19:08 -06:00
16 lines
211 B
Go
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))
|
|
}
|