20 lines
558 B
C#
20 lines
558 B
C#
using LiteCqrs;
|
|
using TeleWave.Application.Common.Models;
|
|
using TeleWave.Domain.Broadcast;
|
|
|
|
namespace TeleWave.Application.Broadcast.Bumpers;
|
|
|
|
/// <summary>Обновить подблок: имя, режим текста, текст и правило показа.</summary>
|
|
public sealed record UpdateBumperTextVariantCommand(
|
|
Guid ChannelId,
|
|
Guid TemplateId,
|
|
Guid VariantId,
|
|
string Name,
|
|
BumperTextKind Kind,
|
|
string NowLabel,
|
|
string NextLabel,
|
|
string Line1,
|
|
string Line2,
|
|
BumperTrigger Trigger
|
|
) : ICommand<Result>;
|