1
0
mirror of https://github.com/chylex/Discord-History-Tracker.git synced 2025-02-22 22:46:01 +01:00
Discord-History-Tracker/app/Server/Data/Download.cs
2025-02-03 12:28:07 +01:00

18 lines
462 B
C#

namespace DHT.Server.Data;
public sealed class Download {
public string NormalizedUrl { get; }
public string DownloadUrl { get; }
public DownloadStatus Status { get; }
public string? Type { get; }
public ulong? Size { get; }
internal Download(string normalizedUrl, string downloadUrl, DownloadStatus status, string? type, ulong? size) {
NormalizedUrl = normalizedUrl;
DownloadUrl = downloadUrl;
Status = status;
Type = type;
Size = size;
}
}