mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-31 04:48:27 +01:00
WIP move baseitem to jellyfin.db
This commit is contained in:
22
Jellyfin.Data/Entities/Chapter.cs
Normal file
22
Jellyfin.Data/Entities/Chapter.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Jellyfin.Data.Entities;
|
||||
|
||||
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
|
||||
public class Chapter
|
||||
{
|
||||
public Guid ItemId { get; set; }
|
||||
|
||||
public required int ChapterIndex { get; set; }
|
||||
|
||||
public required long StartPositionTicks { get; set; }
|
||||
|
||||
public string? Name { get; set; }
|
||||
|
||||
public string? ImagePath { get; set; }
|
||||
|
||||
public DateTime? ImageDateModified { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user