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

9 lines
185 B
C#
Raw Normal View History

2023-08-31 12:04:05 +10:00
namespace PARR.EsppTemplateSync.Services
{
internal interface IManager
{
Task<bool> ManageFileAsync(string path);
Task ManageStringAsync(string str);
2023-08-31 12:04:05 +10:00
}
}