19 lines
395 B
C#
19 lines
395 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
//Copyright (c) 2023 Redikultsev Evgeny, Ekaterinburg, Russia
|
|
//All rights reserved.
|
|
|
|
namespace StructureHelperCommon.Models.Calculators
|
|
{
|
|
/// <summary>
|
|
/// Base interface of input data for calculation
|
|
/// </summary>
|
|
public interface IInputData
|
|
{
|
|
}
|
|
}
|