新增组合子接口

This commit is contained in:
Sanchime 2022-05-12 22:03:39 +08:00
parent 6be9bbcb8e
commit 291ece6355
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1 @@
x

View File

@ -0,0 +1,9 @@
namespace Sanchime.Core.Products;
/// <summary>
/// 组合子接口
/// </summary>
public interface ICombinator
{
ICombinator Combine(ICombinator value);
}