mirror of
https://github.com/HolographicHat/Yae.git
synced 2025-12-11 00:48:12 +08:00
16 lines
338 B
Protocol Buffer
16 lines
338 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option csharp_namespace = "Proto";
|
|
|
|
message UpdateInfo {
|
|
uint32 versionCode = 1;
|
|
string versionName = 2;
|
|
string description = 3;
|
|
string packageLink = 4;
|
|
bool forceUpdate = 5;
|
|
bool enableLibDownload = 6;
|
|
bool enableAutoDownload = 7;
|
|
string currentCNGameHash = 8;
|
|
string currentOSGameHash = 9;
|
|
}
|