16 lines
247 B
Protocol Buffer
16 lines
247 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package api.v1;
|
|
|
|
option go_package = "models/v1";
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
message Sale{
|
|
int64 id = 1;
|
|
google.protobuf.Timestamp saleDate = 2;
|
|
int64 stockID = 3;
|
|
double qty = 4;
|
|
double price = 5;
|
|
}
|