Implemented gif exportation and added some style (again)
This commit is contained in:
18
GifResizer/Models/Format.cs
Normal file
18
GifResizer/Models/Format.cs
Normal 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}";
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user