frostfs-api-go/decimal/decimal.proto
Evgeniy Kulikov 1cf33e5ffd
initial
2019-11-18 16:34:06 +03:00

14 lines
324 B
Protocol Buffer

syntax = "proto3";
package decimal;
option go_package = "github.com/nspcc-dev/neofs-proto/decimal";
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
option (gogoproto.stable_marshaler_all) = true;
message Decimal {
option (gogoproto.goproto_stringer) = false;
int64 Value = 1;
uint32 Precision = 2;
}