using System.Collections.Generic; namespace PriorBankParser { public class StatementDto { public ICollection> AccountInfos { get; set; } public ICollection ContractsInfo { get; set; } public ICollection LockedInfo { get; set; } public TotalDto StatementTotal { get; set; } } public class LockedSection { public string SectionName { get; set; } public IReadOnlyCollection Items { get; set; } } public class OperationalSectionDto { public string SectionName { get; set; } public IReadOnlyCollection Items { get; set; } public TotalDto Total { get; set; } } public class TotalDto { public decimal IncomeAmount { get; set; } public decimal OutcomeAmount { get; set; } public decimal Commission { get; set; } public decimal FinalAmount { get; set; } } }