feat(EsppSync): доработка логики

This commit is contained in:
Mikhail Trubnikov
2023-11-22 12:04:33 +10:00
parent fffdb134c6
commit ede7075eb5
14 changed files with 43 additions and 14 deletions

View File

@@ -1,7 +1,11 @@
namespace PARR.EsppSync
using PARR.Constants;
namespace PARR.EsppSync
{
public interface IEsppObject
{
public string TemplateName { get; set; }
public RobotsEnum Robot { get; set; }
}
}