10 lines
168 B
C#
10 lines
168 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BRS.Common.Interface
|
|
{
|
|
public interface IHalconToolPath
|
|
{
|
|
List<string> GetHalconToolPathList();
|
|
}
|
|
}
|