Files
StructureHelper/StructureHelperCommon/Models/Analyses/IVisualAnalysis.cs
2024-10-20 20:01:32 +05:00

18 lines
448 B
C#

using StructureHelperCommon.Infrastructures.Interfaces;
using StructureHelperCommon.Models.Analyses;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Analyses
{
public interface IVisualAnalysis : ISaveable, ICloneable
{
IAnalysis Analysis { get; set; }
Action ActionToRun { get; set; }
void Run();
}
}