mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-05-06 09:21:01 +03:00
9 lines
221 B
C#
9 lines
221 B
C#
namespace DHT.Server.Data {
|
|
public readonly struct User {
|
|
public ulong Id { get; init; }
|
|
public string Name { get; init; }
|
|
public string? AvatarUrl { get; init; }
|
|
public string? Discriminator { get; init; }
|
|
}
|
|
}
|