18 lines
448 B
C#
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();
|
|
}
|
|
}
|