16 lines
364 B
C#
16 lines
364 B
C#
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using System;
|
|
|
|
namespace StructureHelperCommon.Models.Calculators
|
|
{
|
|
public interface ICalculator : ILogicCalculator
|
|
{
|
|
string Name { get; set; }
|
|
/// <summary>
|
|
/// Flag of exibiting of trace data
|
|
/// </summary>
|
|
bool ShowTraceData { get; set; }
|
|
|
|
}
|
|
}
|