mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-29 22:41:54 +01:00
26 lines
645 B
C#
26 lines
645 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Jellyfin.Data.Entities;
|
|
#pragma warning disable CA2227
|
|
/// <summary>
|
|
/// Enum TrailerTypes.
|
|
/// </summary>
|
|
public class BaseItemTrailerType
|
|
{
|
|
/// <summary>
|
|
/// Gets or Sets Numerical ID of this enumeratable.
|
|
/// </summary>
|
|
public required int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets all referenced <see cref="BaseItemEntity"/>.
|
|
/// </summary>
|
|
public required Guid ItemId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets all referenced <see cref="BaseItemEntity"/>.
|
|
/// </summary>
|
|
public required BaseItemEntity Item { get; set; }
|
|
}
|