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

11 lines
248 B
C#

using System.Collections.Generic;
namespace PriorBankParser
{
public class SectionParseResultDto
{
public string ContractNo { get; set; }
public IReadOnlyCollection<TransactionInfoDto> Transactions { get; set; }
}
}