mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-10 18:24:50 +00:00
20 lines
390 B
C#
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();
|
|
}
|
|
}
|