using System; namespace WebsitePanel.WIXInstaller.Common { internal struct YesNo { public static string Yes { get { return "1"; } } public static string No { get { return "0"; } } } }