2022-08-25 18:49:35 -07:00
|
|
|
syntax = "proto3";
|
|
|
|
package cosmostest.cosmostest;
|
|
|
|
|
|
|
|
option go_package = "cosmos-test/x/cosmostest/types";
|
|
|
|
|
2022-08-27 19:32:06 -07:00
|
|
|
import "cosmostest/bid.proto";
|
|
|
|
|
2022-08-25 18:49:35 -07:00
|
|
|
message Auction {
|
|
|
|
string index = 1;
|
|
|
|
string name = 2;
|
|
|
|
string description = 3;
|
2022-08-27 19:32:06 -07:00
|
|
|
repeated Bid bids = 4;
|
2022-08-25 18:49:35 -07:00
|
|
|
}
|
|
|
|
|