mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-24 20:42:46 +01: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; }
|
|
}
|