Skip to content

Instantly share code, notes, and snippets.

@jdgo-mars
Created October 15, 2021 23:10
Show Gist options
  • Save jdgo-mars/826852541bab09cd744d7d24b7d2a0c0 to your computer and use it in GitHub Desktop.
Save jdgo-mars/826852541bab09cd744d7d24b7d2a0c0 to your computer and use it in GitHub Desktop.
syntax = "proto3";
package login;
message Login {
string name = 1;
string url = 2;
string username = 3;
string password = 4;
optional string notes = 5;
}
message LoginList {
repeated Login login = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment