websitepanel/WebsitePanel.Installer/Sources/WebsitePanel.WIXInstaller/Common/YesNo.cs
2015-04-27 20:21:59 +03:00

11 lines
228 B
C#

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