List of analyses was added into main window
This commit is contained in:
16
StructureHelperCommon/Models/Analyses/IVersionProcessor.cs
Normal file
16
StructureHelperCommon/Models/Analyses/IVersionProcessor.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using StructureHelperCommon.Infrastructures.Interfaces;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperCommon.Models.Analyses
|
||||
{
|
||||
public interface IVersionProcessor : ISaveable
|
||||
{
|
||||
void AddVersion(ISaveable newItem);
|
||||
List<IVersion> Versions { get; }
|
||||
IVersion GetCurrentVersion();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user