BotSharp/src/Infrastructure/BotSharp.Abstraction/Files/Models/OutputFileModel.cs
2024-05-03 17:24:18 -05:00

14 lines
310 B
C#

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; }
}