2024-05-03 19:57:44 +00:00
|
|
|
|
|
|
|
|
namespace BotSharp.Abstraction.Files.Models;
|
|
|
|
|
|
|
|
|
|
public class BotSharpFile
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("file_name")]
|
2024-05-14 16:51:39 +00:00
|
|
|
public string FileName { get; set; } = string.Empty;
|
2024-05-03 19:57:44 +00:00
|
|
|
|
|
|
|
|
[JsonPropertyName("file_data")]
|
2024-05-14 16:51:39 +00:00
|
|
|
public string FileData { get; set; } = string.Empty;
|
2024-05-03 19:57:44 +00:00
|
|
|
|
2024-05-14 16:51:39 +00:00
|
|
|
[JsonPropertyName("file_url")]
|
|
|
|
|
public string FileUrl { get; set; } = string.Empty;
|
2024-05-03 19:57:44 +00:00
|
|
|
}
|