You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/Jellyfin.Data/Enums/MediaSegmentAction.cs

29 lines
631 B

namespace Jellyfin.Data.Enums.MediaSegmentAction
{
/// <summary>
/// An enum representing the Action of MediaSegment.
/// </summary>
public enum MediaSegmentAction
{
/// <summary>
/// None, do nothing with MediaSegment.
/// </summary>
None = 0,
/// <summary>
/// Force skip the MediaSegment.
/// </summary>
Skip = 1,
/// <summary>
/// Prompt user to skip the MediaSegment.
/// </summary>
PromptToSkip = 2,
/// <summary>
/// Mute the MediaSegment.
/// </summary>
Mute = 3,
}
}