using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ComponentLibrary1.office_package.HelperModels { public interface IPdfInfo { public string FileName { get; } public string Title { get; } } }