hello-shop/src/HelloShop.ServiceDefaults/Infrastructure/IDataSeedingProvider.cs
2024-08-29 23:07:14 +08:00

13 lines
379 B
C#

// Copyright (c) HelloShop Corporation. All rights reserved.
// See the license file in the project root for more information.
namespace HelloShop.ServiceDefaults.Infrastructure
{
public interface IDataSeedingProvider
{
int Order => default;
Task SeedingAsync(IServiceProvider serviceProvider, CancellationToken cancellationToken = default);
}
}