Files
StructureHelper/StructureHelperCommon/Models/Sections/Logics/IProcessorLogic.cs
2024-03-10 19:20:01 +05:00

23 lines
542 B
C#

using StructureHelperCommon.Infrastructures.Interfaces;
using StructureHelperCommon.Models.Forces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Sections
{
/// <summary>
/// Logic for calculating of some value
/// </summary>
public interface IProcessorLogic<T> : ILogic
{
/// <summary>
/// Returns new value
/// </summary>
/// <returns></returns>
T GetValue();
}
}