11 lines
228 B
C#
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"; } }
|
|
}
|
|
}
|