using Jellyfin.Data.Entities; namespace Jellyfin.Data.Enums; /// /// Defines the types of content an individual represents. /// public enum MediaSegmentType { /// /// Default media type or custom one. /// Unknown = 0, /// /// Commercial. /// Commercial = 1, /// /// Preview. /// Preview = 2, /// /// Recap. /// Recap = 3, /// /// Outro. /// Outro = 4, /// /// Intro. /// Intro = 5 }