10 lines
214 B
C#
10 lines
214 B
C#
namespace DCIT.Core.Services
|
|
{
|
|
public interface IFontValidationService
|
|
{
|
|
FontValidationResult Validate(string docxPath);
|
|
|
|
FontValidationResult EnsureFontsAvailable(string docxPath);
|
|
}
|
|
}
|