Files
jsmr/JSMR.UI.Blazor/Enums/ImageSize.cs
Brian Bicknell 634050c06f
All checks were successful
ci / build-test (push) Successful in 2m16s
ci / publish-image (push) Has been skipped
Updated CI for Blazor WebAssembly. Added styles for product cards.
2025-11-15 02:34:15 -05:00

17 lines
461 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace JSMR.UI.Blazor.Enums;
/// <summary>Image size selector for DLsite assets.</summary>
public enum ImageSize
{
/// <summary>100×100 square thumbnail (DLsite: "sam").</summary>
Thumb100,
/// <summary>240×240 square (DLsite: "main_240x240").</summary>
Square240,
/// <summary>300×300 square (DLsite: "main_300x300").</summary>
Square300,
/// <summary>Native “main” image (typically ~560×420).</summary>
Main
}