Files
TeleWave/backend/src/TeleWave.Application/Library/CreateShow/CreateShowCommand.cs
T

13 lines
303 B
C#

using LiteCqrs;
using TeleWave.Application.Common.Models;
using TeleWave.Domain.Library;
namespace TeleWave.Application.Library.CreateShow;
public sealed record CreateShowCommand(
string Name,
ShowKind Kind,
string? Description,
string? OriginalName = null
) : ICommand<Result<Guid>>;