-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f64b163
commit e8bce8f
Showing
6 changed files
with
66 additions
and
5 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
10 changes: 10 additions & 0 deletions
10
src/Magicodes.Wx.PublicAccount.Sdk/Apis/Menu/Dtos/AddConditionalApiResult.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,10 @@ | ||
using Newtonsoft.Json; | ||
|
||
namespace Magicodes.Wx.PublicAccount.Sdk.Apis.Menu | ||
{ | ||
public class AddConditionalApiResult | ||
{ | ||
[JsonProperty("menuid")] | ||
public string MenuId { get; set; } | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
src/Magicodes.Wx.PublicAccount.Sdk/Apis/Menu/Dtos/AddConditionalInput.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,20 @@ | ||
using Newtonsoft.Json; | ||
using System.Collections.Generic; | ||
|
||
namespace Magicodes.Wx.PublicAccount.Sdk.Apis.Menu | ||
{ | ||
public class AddConditionalInput | ||
{ | ||
/// <summary> | ||
///一级菜单数组,个数应为1~3个 | ||
/// </summary> | ||
[JsonProperty("button")] | ||
public List<MenuButtonBase> Button { get; set; } | ||
|
||
/// <summary> | ||
/// 菜单匹配规则 | ||
/// </summary> | ||
[JsonProperty("matchrule")] | ||
public MatchRule MatchRule { get; set; } | ||
} | ||
} |
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