Add initial DTO classes and parser skeleton
This commit is contained in:
25
PriorBankParser/TransactionInfoDto.cs
Normal file
25
PriorBankParser/TransactionInfoDto.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user