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