Skip to content

Instantly share code, notes, and snippets.

@arnaldojvg
Last active May 14, 2021 12:10
Show Gist options
  • Save arnaldojvg/112e28f0c152fe725ff1617631dd1723 to your computer and use it in GitHub Desktop.
Save arnaldojvg/112e28f0c152fe725ff1617631dd1723 to your computer and use it in GitHub Desktop.
Covid Update proto
enum UpdateType {
CASES = 1;
VACCINATIONS = 2;
}
message CovidUpdate {
optional string country = 1;
optional UpdateType type = 2;
optional float amout = 3;
optional uint64 date = 4;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment