Files
DP44/Common/DTS.Common/Interactivity/Confirmation.cs
2026-04-17 14:55:32 -04:00

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; }
}
}