using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Txgy.Microseismic.BaseLib { public class WorkAreaModel { public string WorkAreaName { get; set; } public int WorkAreaID { get; set; } public string WorkAreaAdd { get; set; } public double EMin { get; set; } public double EMax { get; set; } public double NMin { get; set; } public double NMax { get; set; } public double ZMin { get; set; } public double ZMax { get; set; } public double ZStep { get; set; } } }