using System;
namespace Xylem.Common.CommonCore.Consts
{
///
/// Constants for inter-program exchange
///
public static class Constants
{
///
/// Marker for lack of information in strings e.g. for region, size, LutCrc, ...
///
public const String StrUnknown = "?";
///
/// Marker for wildcard in search operations
///
public const String StrWildcard = "*";
}
}