mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-01-09 22:42:49 +01:00
13 lines
255 B
C#
13 lines
255 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,
|
|
Success = HttpStatusCode.OK
|
|
}
|