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
707 B
C#

using StartServerWPF.Modules.MseedChart.Models;
using System;
using System.Collections.Generic;
using System.Data;
using System.IO;
using System.Linq;
namespace StartServerWPF.Modules.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; }
}
}