Files
parr_api/PARR.EsppTemplateSync/Services/Manager.cs
Mikhail Kuznetsov ffb95ccf41 Структура
2023-08-31 12:04:05 +10:00

16 lines
348 B
C#

namespace PARR.EsppTemplateSync.Services
{
internal class Manager : IManager
{
public Task<bool> ManageFileAsync(string path)
{
throw new NotImplementedException();
}
public Task<bool> ManageStringAsync(string str)
{
throw new NotImplementedException();
}
}
}