blob: 4586354504108c811b8c792e0f0f6f99f5f7ccbd (
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.Data.Entities;
namespace Jellyfin.Data.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
}
|