Initial commit to new repository
This commit is contained in:
15
.decompiledproj/AxCopilot/Models/ImageAttachment.cs
Normal file
15
.decompiledproj/AxCopilot/Models/ImageAttachment.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace AxCopilot.Models;
|
||||
|
||||
public class ImageAttachment
|
||||
{
|
||||
[JsonPropertyName("base64")]
|
||||
public string Base64 { get; set; } = "";
|
||||
|
||||
[JsonPropertyName("mimeType")]
|
||||
public string MimeType { get; set; } = "image/png";
|
||||
|
||||
[JsonPropertyName("fileName")]
|
||||
public string FileName { get; set; } = "";
|
||||
}
|
||||
Reference in New Issue
Block a user