You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
326 B
15 lines
326 B
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; }
|
|
}
|