New additions.

This commit is contained in:
McMak 2015-04-27 20:21:59 +03:00
parent 47adf43407
commit 5115b49630
11 changed files with 4859 additions and 0 deletions

View file

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