15 lines
364 B
C#
15 lines
364 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using UglyToad.PdfPig;
|
|
using UglyToad.PdfPig.Content;
|
|
|
|
namespace StockHistory;
|
|
|
|
public class PdfSida
|
|
{
|
|
public IEnumerable<IPdfImage>? FoundImages { get; set; }
|
|
public IReadOnlyList<Letter>? FoundLetters { get; set; }
|
|
public IEnumerable<Word>? FoundWords { get; set; }
|
|
}
|