feat(esppScheduleSync): создан проект. Добавлена основная логика синхронизации. Docker

This commit is contained in:
Mikhail Trubnikov
2023-11-22 16:34:16 +10:00
parent dc90275f6f
commit b2f150890c
27 changed files with 457 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
using PARR.Constants;
using PARR.EsppSync;
namespace PARR.EsppScheduleSync.Domain
{
internal class EsppObjectSchedule : IEsppObject
{
public required string TemplateName { get; set; }
public RobotsEnum Robot => RobotsEnum.ScheduleOrder;
//todo:
}
}