mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
24 lines
416 B
C#
24 lines
416 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Threading;
|
|
using System.Net.WebSockets;
|
|
using Serein.Library;
|
|
|
|
|
|
|
|
namespace Serein.Proto.WebSocket.Attributes
|
|
{
|
|
|
|
/// <summary>
|
|
/// 使用 DataKey 整体数据
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Parameter)]
|
|
public sealed class UseDataAttribute : Attribute
|
|
{
|
|
}
|
|
|
|
|
|
}
|