Files
PCK-Studio/PckStudio.Core/Interfaces/ISaveContext.cs

9 lines
160 B
C#

namespace PckStudio.Interfaces
{
public interface ISaveContext<T>
{
public bool AutoSave { get; }
public void Save(T value);
}
}