12345678910111213141516171819202122232425262728293031323334 |
- #region --------------- Copyright Dresser Wayne Pignone -------------
- #endregion
- using System;
- using Wayne.Lib.StateEngine.Generic;
- namespace Wayne.Lib.StateEngine.Description
- {
-
-
-
- [AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
- public class AsyncDoneDescription : EventDescriptionAttribute
- {
- #region Construction
-
-
-
-
-
- public AsyncDoneDescription(string conditionText, object transitionType)
- : base(GenericEventType.AsyncDone, conditionText, transitionType)
- {
- }
- #endregion
- }
- }
|