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