mirror of
https://github.com/HolographicHat/Yae.git
synced 2025-12-12 01:18:15 +08:00
16 lines
340 B
Protocol Buffer
16 lines
340 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option csharp_namespace = "Proto";
|
|
|
|
message UpdateInfo {
|
|
uint32 version_code = 1;
|
|
string version_name = 2;
|
|
string description = 3;
|
|
string package_link = 4;
|
|
bool force_update = 5;
|
|
bool enable_lib_download = 6;
|
|
bool enable_auto_update = 7;
|
|
string current_cn_hash = 8;
|
|
string current_os_hash = 9;
|
|
}
|