Files
ersatztv/ErsatzTV.Application/Configuration/Commands/SaveConfigElementByKey.cs
T

8 lines
212 B
C#

using ErsatzTV.Core.Domain;
using MediatR;
namespace ErsatzTV.Application.Configuration.Commands
{
public record SaveConfigElementByKey(ConfigElementKey Key, string Value) : IRequest<LanguageExt.Unit>;
}