Files
DiscordChatExporter/DiscordChatExporter/Models/Attachment.cs
Alexey Golub eb59cbde28 Make it work
2017-07-12 20:10:01 +03:00

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;
}
}
}