9 lines
159 B
C#
9 lines
159 B
C#
namespace StructureHelperCommon.Infrastructures.Interfaces
|
|
{
|
|
public interface ISaveable
|
|
{
|
|
int Id { get; set; }
|
|
void Save();
|
|
}
|
|
}
|