Files
StructureHelper/StructureHelperCommon/Infrastructures/Interfaces/ISaveable.cs
2023-07-02 22:03:30 +05:00

14 lines
246 B
C#

using System;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
public interface ISaveable
{
/// <summary>
/// Unique identifier
/// </summary>
Guid Id { get;}
//void Save();
}
}