From 291ece63558752c96b1055a30e8625dd10233e90 Mon Sep 17 00:00:00 2001 From: Sanchime Date: Thu, 12 May 2022 22:03:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=BB=84=E5=90=88=E5=AD=90?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Sanchime.Functional/Core/Products/ICombine | 1 + Sanchime.Functional/Core/Products/ICombine.cs | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 Sanchime.Functional/Core/Products/ICombine create mode 100644 Sanchime.Functional/Core/Products/ICombine.cs diff --git a/Sanchime.Functional/Core/Products/ICombine b/Sanchime.Functional/Core/Products/ICombine new file mode 100644 index 0000000..c1b0730 --- /dev/null +++ b/Sanchime.Functional/Core/Products/ICombine @@ -0,0 +1 @@ +x \ No newline at end of file diff --git a/Sanchime.Functional/Core/Products/ICombine.cs b/Sanchime.Functional/Core/Products/ICombine.cs new file mode 100644 index 0000000..0026e35 --- /dev/null +++ b/Sanchime.Functional/Core/Products/ICombine.cs @@ -0,0 +1,9 @@ +namespace Sanchime.Core.Products; + +/// +/// 组合子接口 +/// +public interface ICombinator +{ + ICombinator Combine(ICombinator value); +} \ No newline at end of file