8 lines
171 B
C#
8 lines
171 B
C#
namespace Core.Ports
|
|
{
|
|
public interface IPersistenceService
|
|
{
|
|
void Save(string key, int value);
|
|
int Load(string key, int defaultValue = 0);
|
|
}
|
|
} |