Add bumper variant management: implement API endpoints for adding, updating, and removing bumper text variants, enhance data models to support variant details, and update scheduling logic to utilize variants. Refactor related components for improved bumper template handling and ensure proper error management for variant operations.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
namespace TeleWave.Domain.Broadcast;
|
||||
|
||||
/// <summary>На каких переходах показывать подблок заставки.</summary>
|
||||
public enum BumperTrigger
|
||||
{
|
||||
/// <summary>Только при смене шоу (следующее шоу отличается от текущего).</summary>
|
||||
OnShowChange,
|
||||
|
||||
/// <summary>Только между блоками одного шоу (шоу не меняется).</summary>
|
||||
BetweenEpisodes,
|
||||
|
||||
/// <summary>И на смене шоу, и между блоками одного шоу.</summary>
|
||||
Both,
|
||||
}
|
||||
Reference in New Issue
Block a user