11 lines
467 B
C#
11 lines
467 B
C#
|
|
namespace Wino.Core.Domain;
|
||
|
|
|
||
|
|
public static class AppUrls
|
||
|
|
{
|
||
|
|
public const string Website = "https://www.winomail.app";
|
||
|
|
public const string Discord = "https://discord.gg/windows-apps-hub-714581497222398064";
|
||
|
|
public const string GitHub = "https://github.com/bkaankose/Wino-Mail/";
|
||
|
|
public const string PrivacyPolicy = "https://www.winomail.app/support/privacy";
|
||
|
|
public const string Paypal = "https://paypal.me/bkaankose?country.x=PL&locale.x=en_US";
|
||
|
|
}
|