using System; using System.Collections.Generic; using System.Text; namespace Knoks.Core.Entities.Args.AccountTransactions { public class AccountSetBalanceArgs { public long UserId { get; set; } public long AccountId { get; set; } public decimal Amount { get; set; } public decimal? AmountUSD { get; set; } public string ExternalReferenceId { get; set; } public int? OperatorId { get; set; } public string Comment { get; set; } public string WalletAddress { get; set; } public long? PendingId { get; set; } public short AccountTransactionTypeId { get; set; } } }