11 lines
248 B
C#
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; }
|
|
}
|
|
} |