Files
Wino-Mail/Wino.Core.Domain/Interfaces/IStoreRatingDialog.cs

9 lines
170 B
C#
Raw Normal View History

2024-04-18 01:44:37 +02:00
namespace Wino.Core.Domain.Interfaces
{
public interface IStoreRatingDialog
{
bool DontAskAgain { get; }
bool RateWinoClicked { get; }
}
}