blob: 6822b19021b73e8579d7b8717a78317ce5a41614 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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; }
}
|