BotSharp/src/Infrastructure/BotSharp.Abstraction/Files/Models/BotSharpFile.cs

18 lines
391 B
C#
Raw Normal View History

2024-05-03 19:57:44 +00:00
namespace BotSharp.Abstraction.Files.Models;
public class BotSharpFile
{
[JsonPropertyName("file_name")]
public string FileName { get; set; }
[JsonPropertyName("file_data")]
public string FileData { get; set; }
[JsonPropertyName("content_type")]
public string ContentType { get; set; }
[JsonPropertyName("file_size")]
public int FileSize { get; set; }
}