10 lines
189 B
C#
10 lines
189 B
C#
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace NDB.Infrastructure.DatabaseMigration.Services.Abstractions
|
|||
|
{
|
|||
|
internal interface IMetadataLocationService
|
|||
|
{
|
|||
|
Task Check();
|
|||
|
}
|
|||
|
}
|