mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-25 05:42:45 +01:00
8 lines
203 B
C#
8 lines
203 B
C#
namespace DHT.Server.Data {
|
|
public readonly struct Server {
|
|
public ulong Id { get; internal init; }
|
|
public string Name { get; internal init; }
|
|
public ServerType? Type { get; internal init; }
|
|
}
|
|
}
|