BuildInfo.cs 985 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //------------------------------------------------------------
  2. // Game Framework
  3. // Copyright © 2013-2021 Jiang Yin. All rights reserved.
  4. // Homepage: https://gameframework.cn/
  5. // Feedback: mailto:ellan@gameframework.cn
  6. //------------------------------------------------------------
  7. namespace MetaClient
  8. {
  9. public class BuildInfo
  10. {
  11. public string GameVersion
  12. {
  13. get;
  14. set;
  15. }
  16. public int InternalGameVersion
  17. {
  18. get;
  19. set;
  20. }
  21. public string CheckVersionUrl
  22. {
  23. get;
  24. set;
  25. }
  26. public string WindowsAppUrl
  27. {
  28. get;
  29. set;
  30. }
  31. public string MacOSAppUrl
  32. {
  33. get;
  34. set;
  35. }
  36. public string IOSAppUrl
  37. {
  38. get;
  39. set;
  40. }
  41. public string AndroidAppUrl
  42. {
  43. get;
  44. set;
  45. }
  46. }
  47. }