11 lines
215 B
C#
11 lines
215 B
C#
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Wino.Core.Domain.Interfaces
|
|||
|
|
{
|
|||
|
|
public interface IStoreRatingService
|
|||
|
|
{
|
|||
|
|
Task PromptRatingDialogAsync();
|
|||
|
|
Task LaunchStorePageForReviewAsync();
|
|||
|
|
}
|
|||
|
|
}
|