using System;
using System.Collections.Generic;
namespace Jellyfin.Data.Entities;
#pragma warning disable CA2227
///
/// Enum TrailerTypes.
///
public class BaseItemImageInfo
{
///
/// Gets or Sets.
///
public required Guid Id { get; set; }
///
/// Gets or Sets the path to the original image.
///
public required string Path { get; set; }
///
/// Gets or Sets the time the image was last modified.
///
public DateTime DateModified { get; set; }
///
/// Gets or Sets the imagetype.
///
public ImageInfoImageType ImageType { get; set; }
///
/// Gets or Sets the width of the original image.
///
public int Width { get; set; }
///
/// Gets or Sets the height of the original image.
///
public int Height { get; set; }
#pragma warning disable CA1819
///
/// Gets or Sets the blurhash.
///
public byte[]? Blurhash { get; set; }
///
/// Gets or Sets the reference id to the BaseItem.
///
public required Guid ItemId { get; set; }
///
/// Gets or Sets the referenced Item.
///
public required BaseItemEntity Item { get; set; }
}