mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-25 05:42:45 +01:00
12 lines
387 B
C#
12 lines
387 B
C#
namespace DHT.Server.Data {
|
|
public readonly struct Channel {
|
|
public ulong Id { get; internal init; }
|
|
public ulong Server { get; internal init; }
|
|
public string Name { get; internal init; }
|
|
public ulong? ParentId { get; internal init; }
|
|
public int? Position { get; internal init; }
|
|
public string? Topic { get; internal init; }
|
|
public bool? Nsfw { get; internal init; }
|
|
}
|
|
}
|