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,11 @@
using System.Collections.Generic;
namespace PriorBankParser
{
public class SectionParseResultDto
{
public string ContractNo { get; set; }
public IReadOnlyCollection<TransactionInfoDto> Transactions { get; set; }
}
}