Add initial DTO classes and parser skeleton

This commit is contained in:
Karaychentsev, Vladimir
2020-02-16 22:39:53 +03:00
parent dacd82ecb2
commit 8312e10cb3
5 changed files with 172 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
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; }
}
}