bloxstrap/Bloxstrap/Models/ThumbnailCacheEntry.cs
Matt c1842c0443
Replace AssetDelivery API with Thumbnails API for Discord RPC images (#4947)
* replace assetdelivery with thumbnails for rpc

* update GetThumbnailUrlAsync logging

* fix build error
2025-03-28 19:33:51 +00:00

9 lines
179 B
C#

namespace Bloxstrap.Models
{
internal class ThumbnailCacheEntry
{
public ulong Id { get; set; }
public string Url { get; set; } = string.Empty;
}
}