blob: 54e938347bfc18d876c844dc596bc9cca5c7515d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Jellyfin.Data.Entities;
#pragma warning disable CA1708 // Identifiers should differ by more than case
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
public class AncestorId
{
public Guid Id { get; set; }
public required Guid ItemId { get; set; }
public required BaseItemEntity Item { get; set; }
public string? AncestorIdText { get; set; }
}
|