frostfs-api/decimal/decimal.proto
Leonard Lyubich 0f478ffaa6 [#33] decimal: Improve comments
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
2020-08-06 23:07:51 +03:00

13 lines
337 B
Protocol Buffer

syntax = "proto3";
package decimal;
option go_package = "github.com/nspcc-dev/neofs-api-go/decimal";
option csharp_namespace = "NeoFS.API.Decimal";
// Decimal represents the decimal numbers.
message Decimal {
// Value carries number value.
int64 Value = 1;
// Precision carries value precision.
uint32 Precision = 2;
}