8 lines
188 B
C#
8 lines
188 B
C#
|
|
namespace BotSharp.Abstraction.Files.Models;
|
||
|
|
|
||
|
|
public class ExternalFileModel : FileDataModel
|
||
|
|
{
|
||
|
|
[JsonPropertyName("file_url")]
|
||
|
|
public string FileUrl { get; set; } = string.Empty;
|
||
|
|
}
|