Implemented gif exportation and added some style (again)

This commit is contained in:
Laurent
2026-02-17 18:20:53 +01:00
parent b81d912cf4
commit 4a5bf8dfff
10 changed files with 268 additions and 101 deletions

View File

@@ -0,0 +1,18 @@
namespace GifResizer.Models;
public class Format
{
public Format(int width, int height)
{
Width = width;
Height = height;
Checked = true;
}
public int Width { get; private set; }
public int Height { get; private set; }
public bool Checked { get; set; }
public override string ToString() => $"{Width}x{Height}";
}