Files
Future/Future.Contract/Interfaces/IReceiptAssertifier.cs
2025-08-30 17:19:57 +08:00

16 lines
330 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Future.Contract
{
/// <summary>
/// 指令回执断言器接口,用于为一般“通用指令”附加回执断言
/// </summary>
public interface IReceiptAssertifier
{
}
}