using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Outlook2013TodoAddIn
{
///
/// New class to localize some texts and get some constants, pending proper resource localization
///
public class Constants
{
#region "Variables"
///
/// Today
///
public const string Today = "Today";
///
/// Yesterday
///
public const string Yesterday = "Yesterday";
///
/// Tomorrow
///
public const string Tomorrow = "Tomorrow";
///
/// Reply header prefix for the subject
///
public const string SubjectRE = "RE";
///
/// Follow Up email flag (can't be changed)
///
public const string FollowUp = "Follow up";
///
/// URL to paypal donation site, in case someone want's to buy me a beer ;-)
///
public const string DonateUrl = "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=ZXYEC3PM6K7TQ&lc=US&item_name=Outlook2103AddInBuyBeer¤cy_code=USD&bn=PP%2dDonationsBF%3amybutton%2epng%3aNonHosted";
///
/// Topmost value
///
public const int WS_EX_TOPMOST = 0x00000008;
///
/// Outlook represents a null date with 1/1/4501
///
public const int NullYear = 4501;
#endregion "Variables"
}
}