Files
StructureHelper/StructureHelperCommon/Models/Analyses/IAnalysis.cs
2025-06-01 21:58:06 +05:00

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; }
}
}