Files
Essentials/src/PepperDash.Essentials.Core/Config/ILoadConfig.cs
2026-02-09 08:58:52 -06:00

20 lines
390 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
{
/// <summary>
/// GoWithLoad method
/// </summary>
void GoWithLoad();
}
}