13 lines
		
	
	
		
			376 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			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);
 | |
| }
 |