mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
17 lines
386 B
C#
17 lines
386 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();
|
|
} |