namespace Core.Common.Base
{
///
/// Interface that describes the property that need to be implemented on classes that are stored in the storage.
///
public interface IStorable
{
///
/// Gets or sets the unique identifier for the storage of the class.
///
long StorageId { get; set; }
}
}