12 lines
279 B
C#
12 lines
279 B
C#
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using StructureHelperCommon.Models.Projects;
|
|
|
|
namespace DataAccess.Infrastructures
|
|
{
|
|
public interface ISaveProjectToFileLogic : ILogic
|
|
{
|
|
IProject Project { get; set; }
|
|
|
|
void SaveProject();
|
|
}
|
|
} |