Files
StructureHelper/StructureHelperCommon/Infrastructures/Interfaces/ISaveable.cs
2023-06-18 12:22:29 +05:00

14 lines
244 B
C#

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