-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2685 from JeffreySu/Developer
- Loading branch information
Showing
3 changed files
with
85 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
src/Senparc.Weixin.Open/Senparc.Weixin.Open/WxaAPIs/WxaJson/GetVersionInfoJsonResult.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
using Senparc.Weixin.Entities; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Senparc.Weixin.Open.WxaAPIs | ||
{ | ||
public class GetVersionInfoJsonResult : WxJsonResult | ||
{ | ||
public int errcode { get; set; } | ||
public string errmsg { get; set; } | ||
public Exp_Info exp_info { get; set; } | ||
public Release_Info release_info { get; set; } | ||
} | ||
|
||
public class Exp_Info | ||
{ | ||
public int exp_time { get; set; } | ||
public string exp_version { get; set; } | ||
public string exp_desc { get; set; } | ||
} | ||
|
||
public class Release_Info | ||
{ | ||
public int release_time { get; set; } | ||
public string release_version { get; set; } | ||
public string release_desc { get; set; } | ||
} | ||
|
||
} |