mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-06-19 08:14:02 +03:00
7 lines
165 B
C#
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; }
|
|
}
|