github.com/evrenkutar/randevent@v0.0.0-20210506235643-7d1e39a375e1/samples/person_created_event.proto (about)

     1  syntax = "proto3";
     2  
     3  package person;
     4  option go_package = "github.com/evrenkutar/randevent/pb";
     5  
     6  import "google/protobuf/timestamp.proto";
     7  
     8  message PersonCreated {
     9    string uuid = 1;
    10    string firstname = 2;
    11    string lastname = 3;
    12    google.protobuf.Timestamp created_at = 4;
    13  }