8 lines
149 B
C#
8 lines
149 B
C#
|
|
namespace DTS.Common.Interactivity
|
|||
|
|
{
|
|||
|
|
public interface IConfirmation : INotification
|
|||
|
|
{
|
|||
|
|
bool Confirmed { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|