Files
parr_api/PARR.EsppSync/IEsppObject.cs

12 lines
190 B
C#

using PARR.Constants;
namespace PARR.EsppSync
{
public interface IEsppObject
{
public string TemplateName { get; set; }
public RobotsEnum Robot { get; }
}
}