Files
2024-02-22 14:52:53 -05:00

18 lines
492 B
C#

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");
}
}