Files
Ai/TrafagSalesExporter/Services/ITransformationCatalog.cs
T

15 lines
439 B
C#

namespace TrafagSalesExporter.Services;
public interface ITransformationCatalog
{
IReadOnlyList<TransformationCatalogItem> GetAll();
IReadOnlyList<TransformationCatalogItem> GetByScope(string ruleScope);
}
public sealed class TransformationCatalogItem
{
public string Key { get; init; } = string.Empty;
public string RuleScope { get; init; } = string.Empty;
public string Description { get; init; } = string.Empty;
}