13 lines
453 B
C#
13 lines
453 B
C#
using LiteCqrs;
|
|
using TeleWave.Application.Common.Models;
|
|
|
|
namespace TeleWave.Application.Broadcast.Bumpers;
|
|
|
|
/// <summary>Отметить загруженный звук блока: расширение (с точкой) и длину в секундах (замер ffprobe).</summary>
|
|
public sealed record SetBumperTemplateAudioCommand(
|
|
Guid ChannelId,
|
|
Guid TemplateId,
|
|
string Extension,
|
|
double DurationSeconds
|
|
) : ICommand<Result>;
|