11 lines
217 B
C#
11 lines
217 B
C#
namespace ShrlAlgo.Toolkit.Core.Extensions;
|
|
|
|
public enum ThumbnailOptions
|
|
{
|
|
None = 0x00,
|
|
BiggerSizeOk = 0x01,
|
|
InMemoryOnly = 0x02,
|
|
IconOnly = 0x04,
|
|
ThumbnailOnly = 0x08,
|
|
InCacheOnly = 0x10
|
|
} |