Files
ersatztv/ErsatzTV.Application/Configuration/Queries/GetConfigElementByKey.cs
T

9 lines
229 B
C#

using ErsatzTV.Core.Domain;
using LanguageExt;
using MediatR;
namespace ErsatzTV.Application.Configuration.Queries
{
public record GetConfigElementByKey(ConfigElementKey Key) : IRequest<Option<ConfigElementViewModel>>;
}