8 lines
186 B
C#
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";
|
|
}
|