/Source/Bifrost/Sagas/ChapterTransition.cs
# · C# · 39 lines · 10 code · 1 blank · 28 comment · 0 complexity · 1a96e574cb37e017ad4f62cacb2e587d MD5 · raw file
- #region License
- //
- // Copyright (c) 2008-2012, DoLittle Studios and Komplett ASA
- //
- // Licensed under the Microsoft Permissive License (Ms-PL), Version 1.1 (the "License")
- // With one exception :
- // Commercial libraries that is based partly or fully on Bifrost and is sold commercially,
- // must obtain a commercial license.
- //
- // You may not use this file except in compliance with the License.
- // You may obtain a copy of the license at
- //
- // http://bifrost.codeplex.com/license
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- //
- #endregion
- using Bifrost.Commands;
-
- namespace Bifrost.Sagas
- {
- /// <summary>
- /// Represents the result of a transition between <see cref="IChapter">chapters</see>
- /// </summary>
- /// <remarks>
- /// Since chapters work with commands, this result is inheriting from <see cref="CommandResult"/>
- /// </remarks>
- public class ChapterTransition : CommandResult
- {
- /// <summary>
- /// Gets or sets the <see cref="IChapter"/> that was transitioned to, if succeeded
- /// </summary>
- public IChapter TransitionedTo { get; set; }
- }
- }