forked from TrueCloudLab/frostfs-api
15 lines
371 B
Protocol Buffer
15 lines
371 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package neo.fs.v2.accounting;
|
||
|
|
||
|
option go_package = "github.com/nspcc-dev/neofs-api-go/v2/accounting/grpc;accounting";
|
||
|
option csharp_namespace = "NeoFS.API.v2.Accounting";
|
||
|
|
||
|
// Decimal represents the decimal numbers.
|
||
|
message Decimal {
|
||
|
// value carries number value.
|
||
|
int64 value = 1;
|
||
|
|
||
|
// precision carries value precision.
|
||
|
uint32 precision = 2;
|
||
|
}
|