11 lines
128 B
C#
11 lines
128 B
C#
|
namespace Piwigo.Client;
|
||
|
|
||
|
public enum ThumbnailSize
|
||
|
{
|
||
|
Thumb = 0,
|
||
|
Square,
|
||
|
Small,
|
||
|
Medium,
|
||
|
Large,
|
||
|
XxLarge
|
||
|
}
|