using System.Collections.Generic; using System.IO; namespace FastReport.Web.Blazor.Export { public class BlazorPageData { public float Width { get; set; } public float Height { get; set; } public int PageNumber { get; set; } public List Pictures { get; } /// /// For internal use only. /// public List Guids { get; } public BlazorPageData() { Pictures = new List(); Guids = new List(); } } }