17 lines
392 B
C#
17 lines
392 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
|
|
{
|
|
IAnalysis Analysis {get;set;}
|
|
void Run();
|
|
}
|
|
}
|