16 lines
284 B
C#
16 lines
284 B
C#
///
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
///
|
|
using System;
|
|
|
|
namespace TBF.Rig.GenericDevices
|
|
{
|
|
public interface IHasCompleted
|
|
{
|
|
/// <summary>
|
|
/// true when a dialog was completed
|
|
/// </summary>
|
|
bool Completed { get; }
|
|
}
|
|
}
|