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.
19 lines
572 B
19 lines
572 B
1 year ago
|
using Jellyfin.Data.Entities;
|
||
|
using Microsoft.EntityFrameworkCore;
|
||
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||
|
|
||
|
namespace Jellyfin.Server.Implementations.ModelConfiguration
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// FluentAPI configuration for the TrickplayInfo entity.
|
||
|
/// </summary>
|
||
|
public class TrickplayInfoConfiguration : IEntityTypeConfiguration<TrickplayInfo>
|
||
|
{
|
||
|
/// <inheritdoc/>
|
||
|
public void Configure(EntityTypeBuilder<TrickplayInfo> builder)
|
||
|
{
|
||
|
builder.HasKey(info => new { info.ItemId, info.Width });
|
||
|
}
|
||
|
}
|
||
|
}
|