15 lines
291 B
C#
15 lines
291 B
C#
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:
|
|
}
|
|
}
|