mirror of
https://github.com/cyanfish/naps2.git
synced 2024-11-14 02:29:24 +03:00
9 lines
268 B
C#
9 lines
268 B
C#
namespace NAPS2.Images.Storage;
|
|
|
|
/// <summary>
|
|
/// Base type for image storage, which can be a normal in-memory image (see IMemoryImage) or an image stored on the
|
|
/// filesystem (see ImageFileStorage).
|
|
/// </summary>
|
|
public interface IImageStorage : IDisposable
|
|
{
|
|
} |