You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
650 B
27 lines
650 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Jellyfin.Data.Entities;
|
|
#pragma warning disable CA2227
|
|
|
|
/// <summary>
|
|
/// Enum MetadataFields.
|
|
/// </summary>
|
|
public class BaseItemMetadataField
|
|
{
|
|
/// <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; }
|
|
}
|