16 lines
330 B
C#
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
|
|
{
|
|
}
|
|
}
|