mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-24 20:42:46 +01:00
8 lines
192 B
C#
8 lines
192 B
C#
namespace DHT.Server.Download;
|
|
|
|
public readonly struct DownloadItem {
|
|
public string NormalizedUrl { get; init; }
|
|
public string DownloadUrl { get; init; }
|
|
public ulong Size { get; init; }
|
|
}
|