EnumLikeTable.cs 326 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace Jellyfin.Data.Entities;
  3. /// <summary>
  4. /// Defines an Entity that is modeled after an Enum.
  5. /// </summary>
  6. public abstract class EnumLikeTable
  7. {
  8. /// <summary>
  9. /// Gets or Sets Numerical ID of this enumeratable.
  10. /// </summary>
  11. public required int Id { get; set; }
  12. }