refactor: abstract IWebHostEnvironment to IReceiptStorageOptions

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-20 18:19:31 -04:00
parent 3b01efd8a6
commit d63ded45e1
4 changed files with 31 additions and 9 deletions
@@ -0,0 +1,6 @@
namespace MoneyMap.Services;
public interface IReceiptStorageOptions
{
string ReceiptsBasePath { get; }
}