Mike Phares 0215e838e7 AA.Compare Project to Match not runToDoCollectionFirst
Removed Layered AppSettings with Nested Objects at First Level
2024-12-28 19:34:09 -07:00

19 lines
367 B
C#

namespace View_by_Distance.Shared.Models.Stateless;
/// <summary>
/// Specifies the image mode.
/// </summary>
public enum Mode
{
/// <summary>
/// Specifies that the rgb (8-bit Red, Green and Blue, 3 channels) image mode.
/// </summary>
Rgb,
/// <summary>
/// Specifies that the greyscale image mode.
/// </summary>
Greyscale
}