mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-08-17 01:31:42 +02:00
.github
.idea
app
.idea
Desktop
Resources
Server
Data
Aggregations
Filters
Attachment.cs
Channel.cs
Download.cs
DownloadStatus.cs
DownloadedAttachment.cs
Embed.cs
EmojiFlags.cs
Message.cs
Reaction.cs
Server.cs
ServerType.cs
User.cs
Database
Download
Endpoints
Service
Server.csproj
Utils
.gitignore
Directory.Build.props
DiscordHistoryTracker.sln
Version.cs
build.bat
build.sh
empty.dht
global.json
tools
web
.gitattributes
.gitignore
LICENSE.md
README.md
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
|
|
}
|