22 lines
589 B
C#
22 lines
589 B
C#
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using System;
|
|
using System.Windows.Media;
|
|
|
|
namespace StructureHelperCommon.Models.Analyses
|
|
{
|
|
/// <summary>
|
|
/// Implements propertis of analysis
|
|
/// </summary>
|
|
public interface IAnalysis : ISaveable, ICloneable
|
|
{
|
|
string Name { get; set; }
|
|
string Tags { get; set; }
|
|
string Comment { get; set; }
|
|
Color Color { get; set; }
|
|
/// <summary>
|
|
/// Processor of subversions of analysis
|
|
/// </summary>
|
|
IVersionProcessor VersionProcessor { get; set; }
|
|
}
|
|
}
|