using System; namespace StructureHelperCommon.Infrastructures.Interfaces { /// /// Interface for entities which able to save (has unique identifier) /// public interface ISaveable { /// /// Unique identifier /// Guid Id { get;} } }