mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-04-12 23:07:13 +03:00
11 lines
284 B
C#
11 lines
284 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 int? Position { get; init; }
|
|
public string? Topic { get; init; }
|
|
public bool? Nsfw { get; init; }
|
|
}
|
|
}
|