1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Artemis/src/Artemis.Core/Models/IStorageModel.cs
2020-09-08 19:17:04 +02:00

18 lines
440 B
C#

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