mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-21 20:42:45 +01:00
13 lines
430 B
C#
13 lines
430 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 NormalizedUrl { get; internal init; }
|
|
public string DownloadUrl { get; internal init; }
|
|
public ulong Size { get; internal init; }
|
|
public int? Width { get; internal init; }
|
|
public int? Height { get; internal init; }
|
|
}
|