using System.Collections.Generic;
namespace Jellyfin.Data.Entities;
///
/// Defines an Entity that is modeled after an Enum.
///
public abstract class EnumLikeTable
{
///
/// Gets or Sets Numerical ID of this enumeratable.
///
public required int Id { get; set; }
}