/
chalyj
/
Trans2QuikNET
Обзор
Документация
Войти
/
chalyj
/
Trans2QuikNET
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/Trans2QuikNet/QuikTransactionManager/TransactionReplyEventArgs.cs
28 строк
1020 B
Alexey@Work
initial
13 апр 2024, 13:04
13 апр 2024, 13:04
e78c24b
Код
Авторство
О чём код?
using Trans2QuikNet.Models; namespace Trans2QuikNet { public class TransactionReplyEventArgs : EventArgs { public Result TransactionResult { get; } public int ExtendedErrorCode { get; } public long TransactionReplyCode { get; } public uint TransactionId { get; } public ulong OrderNum { get; } public string TransactionReplyMessage { get; } // Другие поля... public TransactionReplyEventArgs(Result transactionResult, int extendedErrorCode, long transactionReplyCode, uint transactionId, ulong orderNum, string transactionReplyMessage) { TransactionResult = transactionResult; ExtendedErrorCode = extendedErrorCode; TransactionReplyCode = transactionReplyCode; TransactionId = transactionId; OrderNum = orderNum; TransactionReplyMessage = transactionReplyMessage; // Инициализация других полей... } } }