mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-04-14 15:47:14 +03:00
12 lines
380 B
C#
12 lines
380 B
C#
namespace DHT.Server.Data {
|
|
public readonly struct Attachment {
|
|
public ulong Id { get; internal init; }
|
|
public string Name { get; internal init; }
|
|
public string? Type { get; internal init; }
|
|
public string Url { get; internal init; }
|
|
public ulong Size { get; internal init; }
|
|
public int? Width { get; internal init; }
|
|
public int? Height { get; internal init; }
|
|
}
|
|
}
|