You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
672 B
C#
28 lines
672 B
C#
using mseedChart.MainModule.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.IO;
|
|
using System.Linq;
|
|
|
|
namespace mseedChart.Core
|
|
{
|
|
public static class RegionNames
|
|
{
|
|
public const string ContentRegion = "ContentRegion";
|
|
|
|
public static string MseedFilePath = @"H:\EwsCache\Mseed"; //AppDomain.CurrentDomain.BaseDirectory + "EwsCache\\Mseed";
|
|
|
|
|
|
public static string TxtFilePath = @"H:\EwsCache\Txt";//;AppDomain.CurrentDomain.BaseDirectory + "EwsCache\\Txt";
|
|
|
|
|
|
public static string DataTypeString = "A";
|
|
|
|
|
|
public static Dictionary<string, StationModel> StationDic { get; set; }
|
|
|
|
}
|
|
|
|
}
|