16 lines
420 B
C#
16 lines
420 B
C#
// <copyright file="IDataAccessLayerSetup.cs" company="alveus.dev">
|
|
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
|
|
// </copyright>
|
|
|
|
namespace Astral.Core.Infrastructure;
|
|
|
|
/// <summary>
|
|
/// Perform any setup steps required for the data access layer.
|
|
/// </summary>
|
|
public interface IDataAccessLayerSetup
|
|
{
|
|
/// <summary>
|
|
/// Setup routine.
|
|
/// </summary>
|
|
Task Setup();
|
|
}
|