Files
parr_api/PARR.EsppScheduleSync/Domain/EsppObjectSchedule.cs

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:
}
}