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

8 lines
188 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")]
public string FileUrl { get; set; } = string.Empty;
}