8 lines
229 B
C#
8 lines
229 B
C#
using LiteCqrs;
|
|
using TeleWave.Application.Common.Models;
|
|
|
|
namespace TeleWave.Application.Broadcast.AddChannelJingle;
|
|
|
|
public sealed record AddChannelJingleCommand(Guid ChannelId, Guid MediaAssetId)
|
|
: ICommand<Result<Guid>>;
|