2023-11-22 12:04:33 +10:00
|
|
|
|
using PARR.Constants;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PARR.EsppSync
|
2023-11-22 11:37:22 +10:00
|
|
|
|
{
|
|
|
|
|
|
public interface IEsppObject
|
|
|
|
|
|
{
|
|
|
|
|
|
public string TemplateName { get; set; }
|
2023-11-22 12:04:33 +10:00
|
|
|
|
|
2023-11-22 14:19:15 +10:00
|
|
|
|
public RobotsEnum Robot { get; }
|
2023-11-22 11:37:22 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|