18 lines
509 B
C#
Executable File
18 lines
509 B
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MarketData.MarketDataModel
|
|
{
|
|
public class Constants
|
|
{
|
|
public static readonly String CONST_ALL ="{All}";
|
|
public static readonly String CONST_DASHES = "---";
|
|
public static readonly String CONST_QUESTION = "???";
|
|
public static readonly String NA = "N.A.";
|
|
public static readonly DateTime MIN_PRICING_DATE=DateTime.Parse("01-01-2009");
|
|
}
|
|
}
|