feat(EsppSync): общая логика для синхронизации шаблонов и расписаний

This commit is contained in:
Mikhail Trubnikov
2023-11-22 11:37:22 +10:00
parent c88f7f2731
commit fffdb134c6
8 changed files with 206 additions and 7 deletions

View File

@@ -0,0 +1,7 @@
namespace PARR.EsppSync
{
public interface IEsppObject
{
public string TemplateName { get; set; }
}
}