Files
ersatztv/ErsatzTV.Application/Configuration/Queries/GetConfigElementByKey.cs
2021-04-16 15:59:31 -05:00

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>>;
}