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