16 lines
348 B
C#
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();
|
|
}
|
|
}
|
|
}
|