mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-21 20:42:45 +01:00
15 lines
294 B
C#
15 lines
294 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 {
|
|
Pending = 0,
|
|
GenericError = 1,
|
|
Downloading = 2,
|
|
LastCustomCode = 99,
|
|
Success = HttpStatusCode.OK
|
|
}
|