WxUserDecryptDto.cs 228 B

123456789101112
  1. namespace ShwasherSys.Common.Dto.Wx
  2. {
  3. public class WxUserDecryptDto
  4. {
  5. public string EncryptedData { get; set; }
  6. public string SessionKey { get; set; }
  7. public string Iv { get; set; }
  8. }
  9. }