9 lines
191 B
C#
9 lines
191 B
C#
namespace PARR.EsppTemplateSync.Services
|
|
{
|
|
internal interface IManager
|
|
{
|
|
Task<bool> ManageFileAsync(string path);
|
|
Task<bool> ManageStringAsync(string str);
|
|
}
|
|
}
|