13 lines
248 B
C#
13 lines
248 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Wino.Core.Domain.Interfaces
|
|
{
|
|
public interface IAppInitializerService
|
|
{
|
|
string GetApplicationDataFolder();
|
|
string GetPublisherSharedFolder();
|
|
|
|
Task MigrateAsync();
|
|
}
|
|
}
|