mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-24 20:42:46 +01:00
12 lines
313 B
C#
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; }
|
|
}
|