Last active
May 14, 2021 12:10
-
-
Save arnaldojvg/112e28f0c152fe725ff1617631dd1723 to your computer and use it in GitHub Desktop.
Covid Update proto
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
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