Files
StructureHelper/StructureHelperCommon/Infrastructures/Interfaces/IFunctionDecorator.cs
Иван Ивашкин b5ed00341c Add function decorator pattern
2024-10-10 16:11:04 +05:00

14 lines
300 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
public interface IFunctionDecorator
{
public IOneVariableFunction OneVariableFunction { get; }
}
}