12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- //------------------------------------------------------------
- // Game Framework
- // Copyright © 2013-2021 Jiang Yin. All rights reserved.
- // Homepage: https://gameframework.cn/
- // Feedback: mailto:ellan@gameframework.cn
- //------------------------------------------------------------
- namespace MetaClient
- {
- public class BuildInfo
- {
- public string GameVersion
- {
- get;
- set;
- }
- public int InternalGameVersion
- {
- get;
- set;
- }
- public string CheckVersionUrl
- {
- get;
- set;
- }
- public string WindowsAppUrl
- {
- get;
- set;
- }
- public string MacOSAppUrl
- {
- get;
- set;
- }
- public string IOSAppUrl
- {
- get;
- set;
- }
- public string AndroidAppUrl
- {
- get;
- set;
- }
- }
- }
|