11 lines
293 B
C#
11 lines
293 B
C#
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; }
|
|
}
|
|
}
|