WIP move baseitem to jellyfin.db

This commit is contained in:
JPVenson
2024-09-08 16:56:14 +00:00
committed by GitHub
parent d0b4b2ddb3
commit ee1bdf4e22
16 changed files with 1320 additions and 1646 deletions

View File

@@ -0,0 +1,21 @@
using System;
namespace Jellyfin.Data.Entities;
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
public class AttachmentStreamInfo
{
public required Guid ItemId { get; set; }
public required int Index { get; set; }
public required string Codec { get; set; }
public string? CodecTag { get; set; }
public string? Comment { get; set; }
public string? Filename { get; set; }
public string? MimeType { get; set; }
}