13 lines
298 B
Go
13 lines
298 B
Go
package srequest
|
|
|
|
import (
|
|
"github.com/tech/sendico/pkg/model"
|
|
"go.mongodb.org/mongo-driver/v2/bson"
|
|
)
|
|
|
|
type CreateWallet struct {
|
|
Description model.Describable `json:"description"`
|
|
Asset model.ChainAssetKey `json:"asset"`
|
|
OwnerRef *bson.ObjectID `json:"ownerRef,omitempty"`
|
|
}
|