namespace Artemis.Core;
///
/// Represents a model that can be loaded and saved to persistent storage
///
public interface IStorageModel
{
///
/// Loads the model from its associated entity
///
void Load();
///
/// Saves the model to its associated entity
///
void Save();
}