Files
transactions-list-parser/PriorBankParser/TransactionInfoDto.cs
2020-02-16 22:39:53 +03:00

25 lines
551 B
C#

using System;
namespace PriorBankParser
{
public class TransactionInfoDto
{
public DateTime TransactionDate { get; set; }
public string OperationName { get; set; }
public decimal Amount { get; set; }
public string Currency { get; set; }
public DateTime OperationDate { get; set; }
public decimal Commission { get; set; }
public decimal AccountTurnover { get; set; }
public string DigitalCard { get; set; }
public string OperationCategory { get; set; }
}
}