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

8 lines
173 B
C#
Raw Normal View History

2024-09-10 19:02:25 +00:00
namespace BotSharp.Abstraction.Files.Models;
public class ExternalFileModel : FileDataModel
{
[JsonPropertyName("file_url")]
2024-09-12 16:51:23 +00:00
public string? FileUrl { get; set; }
2024-09-10 19:02:25 +00:00
}