mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
21 lines
415 B
C#
21 lines
415 B
C#
using Newtonsoft.Json.Linq;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace Serein.Library.Network.WebSocketCommunication.Handle
|
||
{
|
||
/// <summary>
|
||
/// 表示参数不能为空(Net462不能使用NutNull的情况)
|
||
/// </summary>
|
||
public sealed class NeedfulAttribute : Attribute
|
||
{
|
||
}
|
||
|
||
|
||
|
||
}
|