Created
October 15, 2021 23:10
-
-
Save jdgo-mars/826852541bab09cd744d7d24b7d2a0c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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