Files
parr_api/PARR.EsppSync/IEsppObject.cs
2023-11-22 12:04:33 +10:00

12 lines
195 B
C#

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