aboutsummaryrefslogtreecommitdiff
path: root/src/Jellyfin.Database/Jellyfin.Database.Implementations/Enums/MediaSegmentType.cs
blob: a6e8732fff28d87beeee74ec90c437d52511a3e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using Jellyfin.Database.Implementations.Entities;

namespace Jellyfin.Database.Implementations.Enums;

/// <summary>
/// Defines the types of content an individual <see cref="MediaSegment"/> represents.
/// </summary>
public enum MediaSegmentType
{
    /// <summary>
    /// Default media type or custom one.
    /// </summary>
    Unknown = 0,

    /// <summary>
    /// Commercial.
    /// </summary>
    Commercial = 1,

    /// <summary>
    /// Preview.
    /// </summary>
    Preview = 2,

    /// <summary>
    /// Recap.
    /// </summary>
    Recap = 3,

    /// <summary>
    /// Outro.
    /// </summary>
    Outro = 4,

    /// <summary>
    /// Intro.
    /// </summary>
    Intro = 5
}