Files
parr_api/PARR.EsppTemplateSync/Services/IManager.cs

9 lines
185 B
C#

namespace PARR.EsppTemplateSync.Services
{
internal interface IManager
{
Task<bool> ManageFileAsync(string path);
Task ManageStringAsync(string str);
}
}