9 lines
348 B
C#
9 lines
348 B
C#
using LiteCqrs;
|
|
using TeleWave.Application.Common.Models;
|
|
|
|
namespace TeleWave.Application.Broadcast.Bumpers;
|
|
|
|
/// <summary>Добавить подблок (текст-вариант) в блок заставки.</summary>
|
|
public sealed record AddBumperTextVariantCommand(Guid ChannelId, Guid TemplateId, string Name)
|
|
: ICommand<Result<Guid>>;
|