Check logic for rebar ndm was created

This commit is contained in:
RedikultsevEvg
2024-08-02 23:29:50 +05:00
parent 35b4000f64
commit e7c7211f54
22 changed files with 675 additions and 82 deletions

View File

@@ -7,8 +7,15 @@ using System.Threading.Tasks;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
/// <summary>
/// Checks input data
/// </summary>
/// <typeparam name="TInputData">Class of input data</typeparam>
public interface ICheckInputDataLogic<TInputData> : ICheckLogic where TInputData : IInputData
{
/// <summary>
/// Class of input data
/// </summary>
TInputData InputData { get; set; }
}
}