新增组合子接口
This commit is contained in:
parent
6be9bbcb8e
commit
291ece6355
|
@ -0,0 +1 @@
|
|||
x
|
|
@ -0,0 +1,9 @@
|
|||
namespace Sanchime.Core.Products;
|
||||
|
||||
/// <summary>
|
||||
/// 组合子接口
|
||||
/// </summary>
|
||||
public interface ICombinator
|
||||
{
|
||||
ICombinator Combine(ICombinator value);
|
||||
}
|
Loading…
Reference in New Issue