12 lines
190 B
C#
12 lines
190 B
C#
using PARR.Constants;
|
|
|
|
namespace PARR.EsppSync
|
|
{
|
|
public interface IEsppObject
|
|
{
|
|
public string TemplateName { get; set; }
|
|
|
|
public RobotsEnum Robot { get; }
|
|
}
|
|
}
|