- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace Winsoft.GOV.XF.WebApi.WXCore.Models
- {
- [JsonObject(MemberSerialization.OptOut)]
- public class BundleAccessToken
- {
- public Guid BundleId { get; set; }
- public long Expire { get; set; }
- }
- }
|