18 lines
451 B
C#
18 lines
451 B
C#
|
|
namespace BotSharp.Abstraction.Files.Models;
|
|
|
|
public class BotSharpFile
|
|
{
|
|
[JsonPropertyName("file_name")]
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// File data, e.g., "data:image/png;base64,aaaaaaaa"
|
|
/// </summary>
|
|
[JsonPropertyName("file_data")]
|
|
public string FileData { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("file_url")]
|
|
public string FileUrl { get; set; } = string.Empty;
|
|
}
|