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