template-monorepo/internal/model/member/domain/repository/profile.go

10 lines
317 B
Go
Raw Normal View History

package repository
import "context"
// ProfileRepository updates member profile verification flags (Mongo in P4).
type ProfileRepository interface {
SetBusinessEmailVerified(ctx context.Context, tenantID, uid, email string) error
SetBusinessPhoneVerified(ctx context.Context, tenantID, uid, phone string) error
}