using StructureHelperCommon.Infrastructures.Interfaces;
using System;
using System.Windows.Media;
namespace StructureHelperCommon.Models.Analyses
{
///
/// Implements propertis of analysis
///
public interface IAnalysis : ISaveable, ICloneable
{
string Name { get; set; }
string Tags { get; set; }
string Comment { get; set; }
Color Color { get; set; }
///
/// Processor of subversions of analysis
///
IVersionProcessor VersionProcessor { get; set; }
}
}