Serialize converters were added
This commit is contained in:
19
StructureHelperCommon/Models/Projects/IProject.cs
Normal file
19
StructureHelperCommon/Models/Projects/IProject.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using StructureHelperCommon.Infrastructures.Interfaces;
|
||||
using StructureHelperCommon.Models.Analyses;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperCommon.Models.Projects
|
||||
{
|
||||
public interface IProject : ISaveable
|
||||
{
|
||||
string FullFileName { get; set; }
|
||||
string FileName { get; }
|
||||
bool IsNewFile { get; set; }
|
||||
bool IsActual { get; set; }
|
||||
List<IVisualAnalysis> VisualAnalyses { get;}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user