1
0
mirror of https://github.com/chylex/Discord-History-Tracker.git synced 2025-08-17 01:31:42 +02:00
Files
.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

12 lines
313 B
C#

namespace DHT.Server.Data;
public readonly struct Channel {
public ulong Id { get; init; }
public ulong Server { get; init; }
public string Name { get; init; }
public ulong? ParentId { get; init; }
public int? Position { get; init; }
public string? Topic { get; init; }
public bool? Nsfw { get; init; }
}