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