//------------------------------------------------------------ // 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; } } }