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