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