Files
DP44/Common/DTS.Common/.svn/pristine/18/1832f50279bb3e0bdca508c590b9d649f53bdce5.svn-base

8 lines
149 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
namespace DTS.Common.Interactivity
{
public interface IConfirmation : INotification
{
bool Confirmed { get; set; }
}
}