mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-10 20:02:31 +00:00
21 lines
465 B
C#
21 lines
465 B
C#
namespace DiscordChatExporter.Models
|
|
{
|
|
public class Attachment
|
|
{
|
|
public string Id { get; }
|
|
|
|
public string Url { get; }
|
|
|
|
public string FileName { get; }
|
|
|
|
public long ContentLength { get; }
|
|
|
|
public Attachment(string id, string url, string fileName, long contentLength)
|
|
{
|
|
Id = id;
|
|
Url = url;
|
|
FileName = fileName;
|
|
ContentLength = contentLength;
|
|
}
|
|
}
|
|
} |