task 1 complete task2 task2 change test data initialization task3 task2 fix fixes add percents minor fixes
15 lines
299 B
C#
15 lines
299 B
C#
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; }
|
|
}
|
|
}
|