2024-04-18 01:44:37 +02:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Wino.Core.Domain.Interfaces
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IAppInitializerService
|
|
|
|
|
|
{
|
|
|
|
|
|
string GetApplicationDataFolder();
|
2024-06-24 00:36:21 +02:00
|
|
|
|
string GetPublisherSharedFolder();
|
2024-04-18 01:44:37 +02:00
|
|
|
|
|
|
|
|
|
|
Task MigrateAsync();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|