mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-06-07 18:38:21 +08:00
152077e9b5
2. 补充了部分注释。 3. 修改了删除容器节点时,容器内子节点未正确删除的问题。
27 lines
643 B
C#
27 lines
643 B
C#
using System;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Serein.Library.Utils
|
|
{
|
|
/// <summary>
|
|
/// 触发器结果类,用于存储触发器的类型和返回值。
|
|
/// </summary>
|
|
/// <typeparam name="TResult"></typeparam>
|
|
public class TriggerResult<TResult>
|
|
{
|
|
/// <summary>
|
|
/// 触发类型
|
|
/// </summary>
|
|
public TriggerDescription Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 触发结果值
|
|
/// </summary>
|
|
public TResult Value { get; set; }
|
|
}
|
|
}
|