mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-24 20:42:46 +01:00
14 lines
273 B
C#
14 lines
273 B
C#
using System.Net;
|
|
|
|
namespace DHT.Server.Data;
|
|
|
|
/// <summary>
|
|
/// Extends <see cref="HttpStatusCode"/> with custom status codes in the range 0-99.
|
|
/// </summary>
|
|
public enum DownloadStatus {
|
|
Enqueued = 0,
|
|
GenericError = 1,
|
|
Downloading = 2,
|
|
Success = HttpStatusCode.OK
|
|
}
|