Files
StructureHelper/StructureHelperCommon/Models/Analyses/IEditor.cs
Иван Ивашкин ccc9513416 Add graph application
2024-10-06 18:53:47 +05:00

17 lines
413 B
C#

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 IEditor : ISaveable, ICloneable
{
string Name { get; set; }
string Tags { get; set; }
IVersionProcessor VersionProcessor { get; }
}
}