Discord-History-Tracker/app/Server/Data/DownloadedAttachment.cs

7 lines
165 B
C#

namespace DHT.Server.Data;
public readonly struct DownloadedAttachment {
public string? Type { get; internal init; }
public byte[] Data { get; internal init; }
}