mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-04-14 07:37:13 +03:00
7 lines
171 B
C#
7 lines
171 B
C#
namespace DHT.Server.Data {
|
|
public readonly struct DownloadedAttachment {
|
|
public string? Type { get; internal init; }
|
|
public byte[] Data { get; internal init; }
|
|
}
|
|
}
|