BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/Models/Attachment.cs
2023-11-09 15:11:36 -06:00

22 lines
509 B
C#

namespace BotSharp.Abstraction.Conversations.Models;
public class Attachment
{
public string ContentType { get; set; }
//
// Summary:
// Gets the raw Content-Disposition header of the uploaded file.
public string ContentDisposition { get; set; }
//
// Summary:
// Gets the file length in bytes.
public long Length { get; set; }
//
// Summary:
// Gets the file name from the Content-Disposition header.
public string FileName { get; set; }
}