Files
git.stella-ops.org/src/StellaOps.Concelier.Exporter.Json/IJsonExportPathResolver.cs
2025-10-18 20:46:16 +03:00

13 lines
376 B
C#

using StellaOps.Concelier.Models;
namespace StellaOps.Concelier.Exporter.Json;
public interface IJsonExportPathResolver
{
/// <summary>
/// Returns the relative path (using platform directory separators) for the supplied advisory.
/// Path must not include the leading export root.
/// </summary>
string GetRelativePath(Advisory advisory);
}