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"; #endregion "Variables" } }