Files
ShaftControlCodes/src/BRS.Common.Model/Interface/IHalconToolPath.cs
2023-02-23 14:52:43 +08:00

10 lines
168 B
C#

using System.Collections.Generic;
namespace BRS.Common.Interface
{
public interface IHalconToolPath
{
List<string> GetHalconToolPathList();
}
}