- using System;
- using WayneChina_IcCardReader_SinoChem.MessageEntity.Incoming;
- namespace SinochemInternetPlusApp
- {
- public class SignedDataEventArgs : EventArgs
- {
- public SignDataResponse SignedDataResponse { get; private set; }
- public SignedDataEventArgs(SignDataResponse response)
- {
- SignedDataResponse = response;
- }
- }
- }
|