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

14 lines
310 B
C#
Raw Normal View History

2024-05-03 22:24:18 +00:00
namespace BotSharp.Abstraction.Files.Models;
public class OutputFileModel
{
[JsonPropertyName("file_url")]
public string FileUrl { get; set; }
[JsonPropertyName("file_name")]
public string FileName { get; set; }
[JsonPropertyName("file_type")]
public string FileType { get; set; }
}