using System.Windows; namespace Azaion.Common.Extensions; public static class SizeExtensions { public static bool FitSizeForAI(this Size size) => // Allow to be up to FullHD to save as 1280*1280 size.Width <= Constants.AI_TILE_SIZE_DEFAULT * 1.5 && size.Height <= Constants.AI_TILE_SIZE_DEFAULT * 1.5; }