mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-18 00:21:33 -07:00
* replace assetdelivery with thumbnails for rpc * update GetThumbnailUrlAsync logging * fix build error
9 lines
179 B
C#
9 lines
179 B
C#
namespace Bloxstrap.Models
|
|
{
|
|
internal class ThumbnailCacheEntry
|
|
{
|
|
public ulong Id { get; set; }
|
|
public string Url { get; set; } = string.Empty;
|
|
}
|
|
}
|