galaeth-draft/Galaeth.Core/Infrastructure/IDataAccessLayerSetup.cs

15 lines
282 B
C#
Raw Permalink Normal View History

2024-11-17 10:31:01 +01:00
using Injectio.Attributes;
namespace Galaeth.Core.Infrastructure;
/// <summary>
/// Perform any setup steps required for the data access layer.
/// </summary>
public interface IDataAccessLayerSetup
{
/// <summary>
/// Setup routine.
/// </summary>
Task Setup();
}