21 lines
462 B
C#
21 lines
462 B
C#
namespace InspectionUI.RemoteControl.Interfaces
|
|
{
|
|
using System.Runtime.InteropServices;
|
|
|
|
[ComVisible(true)]
|
|
[Guid("93175DDE-BEC2-463A-9977-849494ACA2DB")]
|
|
[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
|
|
public interface IInfoMessage
|
|
{
|
|
bool Completed { get; set; }
|
|
|
|
string PSNR { get; set; }
|
|
|
|
int TesterId { get; set; }
|
|
|
|
string TesterName { get; set; }
|
|
|
|
string Error { get; set; }
|
|
}
|
|
}
|