BotSharp/src/Infrastructure/BotSharp.Abstraction/Files/Models/ImageConvertOptions.cs
2025-09-12 11:30:41 -05:00

8 lines
186 B
C#

namespace BotSharp.Abstraction.Files.Models;
public class ImageConvertOptions
{
public string ImageType { get; set; } = "png";
public string ColorType { get; set; } = "rgba";
}