mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-23 23:20:51 +01:00
Update comments
This commit is contained in:
parent
2c2e33dd82
commit
868bb9ea25
1 changed files with 24 additions and 4 deletions
|
|
@ -1,24 +1,44 @@
|
|||
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
|
||||
/// <summary>
|
||||
/// The Chapter entity.
|
||||
/// </summary>
|
||||
public class Chapter
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or Sets the <see cref="BaseItemEntity"/> reference id.
|
||||
/// </summary>
|
||||
public required Guid ItemId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets the <see cref="BaseItemEntity"/> reference.
|
||||
/// </summary>
|
||||
public required BaseItemEntity Item { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets the chapters index in Item.
|
||||
/// </summary>
|
||||
public required int ChapterIndex { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets the position within the source file.
|
||||
/// </summary>
|
||||
public required long StartPositionTicks { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets the common name.
|
||||
/// </summary>
|
||||
public string? Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets the image path.
|
||||
/// </summary>
|
||||
public string? ImagePath { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets the time the image was last modified.
|
||||
/// </summary>
|
||||
public DateTime? ImageDateModified { get; set; }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue