Files
jellyfin/Jellyfin.Data/Entities/EnumLikeTable.cs
2024-10-09 23:01:54 +00:00

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; }
}