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