mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-29 14:31:53 +01:00
15 lines
326 B
C#
15 lines
326 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Jellyfin.Data.Entities;
|
|
|
|
/// <summary>
|
|
/// Defines an Entity that is modeled after an Enum.
|
|
/// </summary>
|
|
public abstract class EnumLikeTable
|
|
{
|
|
/// <summary>
|
|
/// Gets or Sets Numerical ID of this enumeratable.
|
|
/// </summary>
|
|
public required int Id { get; set; }
|
|
}
|