Files
Essentials/src/PepperDash.Essentials.Core/Config/ILoadConfig.cs
2025-07-22 15:53:01 +00:00

17 lines
315 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PepperDash.Essentials.Core
{
/// <summary>
/// Defines the contract for ILoadConfig
/// </summary>
public interface ILoadConfig
{
void GoWithLoad();
}
}