BotSharp/src/Infrastructure/BotSharp.Abstraction/Files/Models/ImageConvertOptions.cs

8 lines
186 B
C#
Raw Normal View History

2025-09-12 16:30:41 +00:00
namespace BotSharp.Abstraction.Files.Models;
public class ImageConvertOptions
{
public string ImageType { get; set; } = "png";
public string ColorType { get; set; } = "rgba";
}