11 lines
293 B
Plaintext
11 lines
293 B
Plaintext
|
|
namespace DTS.Common.Interactivity
|
||
|
|
{
|
||
|
|
public class Confirmation : Notification, IConfirmation
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Gets or sets a value indicating that the confirmation is confirmed.
|
||
|
|
/// </summary>
|
||
|
|
public bool Confirmed { get; set; }
|
||
|
|
}
|
||
|
|
}
|