Files
DP44/Common/DTS.Common.DAS.Concepts/.svn/pristine/fa/fa4a0bc174322e101df8e2dac4ed7663bc8b6c4f.svn-base
2026-04-17 14:55:32 -04:00

20 lines
355 B
Plaintext

/*
* ITriggerable.cs
*
* Copyright © 2010
* Diversified Technical Systems, Inc.
* All Rights Reserved.
*/
namespace DTS.Common.DAS.Concepts
{ ///
/// <summary>
/// Functional description of a "triggerable" object.
/// </summary>
///
public interface ITriggerable
{
void Trigger();
}
}