15 lines
384 B
C#
15 lines
384 B
C#
using StructureHelperCommon.Models.Calculators;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperCommon.Infrastructures.Interfaces
|
|
{
|
|
public interface ICheckInputDataLogic<TInputData> : ICheckLogic where TInputData : IInputData
|
|
{
|
|
TInputData InputData { get; set; }
|
|
}
|
|
}
|