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

22 lines
431 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PARR.EsppTemplateSync
{
internal class TemplateMQSyncer : ITemplateSyncer
{
public async Task StartAsync()
{
// throw new NotImplementedException();
}
public void Stop()
{
//throw new NotImplementedException();
}
}
}