Files
ZelWiki/TightWiki.Models/DataModels/ImageCacheItem.cs
2025-01-22 23:31:03 +08:00

15 lines
354 B
C#

namespace TightWiki.Models.DataModels
{
public partial class ImageCacheItem
{
public string ContentType { get; set; } = string.Empty;
public byte[] Bytes { get; set; }
public ImageCacheItem(byte[] bytes, string contentType)
{
Bytes = bytes;
ContentType = contentType;
}
}
}