mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-04-12 23:07:13 +03:00
10 lines
246 B
C#
10 lines
246 B
C#
namespace DHT.Server.Data {
|
|
public readonly struct Attachment {
|
|
public ulong Id { get; init; }
|
|
public string Name { get; init; }
|
|
public string? Type { get; init; }
|
|
public string Url { get; init; }
|
|
public ulong Size { get; init; }
|
|
}
|
|
}
|