- using System;
- namespace SinochemInternetPlusApp
- {
- public class TransactionOperationEventArgs : EventArgs
- {
- public TransactionOperation TrxOp { get; private set; }
- public TransactionOperationEventArgs(TransactionOperation trxOp)
- {
- TrxOp = trxOp;
- }
- }
- }
|