12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #region Apache License Version 2.0
- #endregion Apache License Version 2.0
- using System.Collections.Generic;
- namespace Senparc.Weixin.MP.AppStore
- {
-
-
-
- public class PassportCollection : Dictionary<string, PassportBag>
- {
-
-
-
- public string BasicUrl { get; set; }
- public string MarketingToolUrl { get; set; }
- public PassportCollection()
- {
- }
- }
- }
|