Files
aa/Shared/Models/Stateless/ImageFormat.cs
2025-07-20 08:31:03 -07:00

24 lines
501 B
C#

namespace Phares.Shared.Models.Stateless;
/// <summary>
/// Specifies the file format of the image.
/// </summary>
public enum ImageFormat
{
/// <summary>
/// Specifies that the bitmap (BMP) image format.
/// </summary>
Bmp,
/// <summary>
/// Specifies that the Joint Photographic Experts Group (JPEG) image format.
/// </summary>
Jpeg,
/// <summary>
/// Specifies that the W3C Portable Network Graphics (PNG) image format.
/// </summary>
Png,
}