25 lines
551 B
C#
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; }
|
|
}
|
|
} |