Files
Tranga/API/Constants.cs
glax 0b44abf4c7 Update dependencies
Add linkdotnet/BuildInformation
2025-10-02 18:09:27 +02:00

10 lines
259 B
C#

using SixLabors.ImageSharp;
namespace API;
public struct Constants
{
public static readonly Size ImageSmSize = new (225, 320);
public static readonly Size ImageMdSize = new (450, 640);
public static readonly Size ImageLgSize = new (900, 1280);
}