mirror of
https://github.com/C9Glax/tranga.git
synced 2025-10-11 05:09:49 +02:00
10 lines
259 B
C#
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);
|
|
} |